You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
285 B

int n;
int main()
{
//newline=10;
int i;
int j;
//m = 1478;
//int t;
i=getint();
j=getint();
int temp;
temp=i;
i=j;
j=temp;
putint(i);
temp = 10;
putch(temp);
putint(j);
temp = 10;
putch(temp);
return 0;
}