Problem helloworld
User Ninjatobs
Submission Time 2026-06-23 09:45:57
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp: In function ‘int main()’:
helloworld.cpp:4:8: error: expected initializer before ‘>>’ token
4 | int a >> b;
| ^~
helloworld.cpp:5:10: error: ‘a’ was not declared in this scope
5 | cin >> a >> b;
| ^
helloworld.cpp:5:15: error: ‘b’ was not declared in this scope
5 | cin >> a >> b;
| ^
helloworld.cpp:6:2: error: expected primary-expression before ‘<<’ token
6 | << cout << a << b;
| ^~