input/code.cpp: In function 'int main()':
input/code.cpp:12:7: error: expected ';' before 'u'
ull u = 0;
^
input/code.cpp:12:12: warning: statement has no effect [-Wunused-value]
ull u = 0;
^
input/code.cpp:13:7: error: expected ';' before 'm'
ull m = 0;
^
input/code.cpp:13:12: warning: statement has no effect [-Wunused-value]
ull m = 0;
^
input/code.cpp:15:9: error: expected ';' before 'a'
ull a;
^
input/code.cpp:15:10: warning: statement has no effect [-Wunused-value]
ull a;
^
input/code.cpp:16:12: error: 'a' was not declared in this scope
cin >> a
^
input/code.cpp:20:7: error: 'else' without a previous 'if'
} else {
^
input/code.cpp:22:7: error: 'u' was not declared in this scope
u += a;
^