1 2 3 4 5 6 7 8
#include <stdio.h> main() { int k = 35; printf("%d%d%d\n",k==35,k=50,k>40); return 0; }
1
0500