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