mirror of
https://github.com/ada-dmitry/TMP_C712.git
synced 2026-09-24 01:00:19 +00:00
15 lines
169 B
C
15 lines
169 B
C
#include <stdio.h>
|
|
|
|
void swap(int *px, int *py);
|
|
|
|
int main()
|
|
{
|
|
int x, y;
|
|
scanf("%d%d", &x, &y);
|
|
|
|
swap(&x, &y);
|
|
|
|
printf("%d %d\n", x, y);
|
|
return 0;
|
|
}
|