#include int main() { int a, b; scanf("a=%d,b=%d", &a, &b); int c = a; a = b; b = c; printf("a=%d,b=%d", a, b); return 0; }