// editor3
#include <stdio.h>
int a;
int b;
int temp;
scanf("%d" , &a);

temp = a;
a=b;
b=temp;
printf("%d\n"  , a b);
return 0 ;
}