#include int main() { int a,b,c; a = 3; b = 7; c = a; a = b; b = c; printf("%d %d\n", a,b); return 0; }