You are on page 1of 1

#include<stdio.

h>
void main()
{
int a,b,c;
scanf("%d %d",&a,&b);
c=b;
b=a;
a=c;
printf("%d\n%d",a,b);
}

You might also like