#include int main(void){ int a, b; a = 1; a = a + 1; b = a; b = b - 1; printf("%d %d", a, b); return 0;}