1 2 3 4 5 6
// Missing semicolon after variable declaration int main() { int x = 5 int y = 10; return x + y; }