# include<stdio.h>
int main()
{
    int a,b;
   scanf("%d %d",&a,&b);
   int swap=a;
   a=b;
   swap=b;
   printf("%d ,%d \n",a,b)