#include int x = 1, y = 2; int main() { int a = 0; int b = 1; a = a + 11; a = a - b; a--; b++; b = a % 3; printf("a = %i\nb = %i\n", a, b); }