#include int main() { int x = 0; x += 3; int y = 0; y += 3; printf("%i %i\n",x,y); printf("done.\n"); return 0; }