#include int main(){ int x, y, sum; x = 1; y = 2; sum = x + y; printf("%d\n", sum); return 0; };