Problem addition
User NikhilK
Submission Time 2023-08-06 01:57:03
Score 0
Max Time N/A
Max Memory N/A

Compile Error

addition.cpp:5:1: error: ‘auot’ does not name a type; did you mean ‘auto’?
5 | auot total;
| ^~~~
| auto
addition.cpp:6:1: error: declaration of ‘auto a’ has no initializer
6 | auto a, b;
| ^~~~
addition.cpp:6:1: error: declaration of ‘auto b’ has no initializer
addition.cpp: In function ‘int main()’:
addition.cpp:12:5: error: ‘total’ was not declared in this scope
12 | total = a + b;
| ^~~~~