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