#include <stdio.h>
main()
{
int pom,x,y;
printf("Unesi dva cela broja:");
scanf("%d%d",&x,&y);
pom=x;
x=y;
y=pom;

printf("%d\n%d\n", x, y);
}
 
