func int main() { int a := 1; int b := 2; int x := a + b; b = 100; putint(x); putc('\n'); return 0; }