#include<math.h> #include<stdio.h> main() { int a = 41; int b = 41; a++ & printf("%d\n", a); b++ && printf("%d\n", b); }