#include <stdio.h> int main() { int a = 5; int b = 10; int t; t = a; a = b; b = t; printf(" a = %d", a); printf(" b = %d", b); return 0; }