1 2 3 4 5 6 7
// Two missing semicolons in one file int main() { int a = 1 int b = 2 int c = 3; return a + b + c; }