input/code.cpp: In function 'int main()':
input/code.cpp:11:13: error: 'a' was not declared in this scope
cin >> a >> b;
^
input/code.cpp:11:18: error: 'b' was not declared in this scope
cin >> a >> b;
^
input/code.cpp:14:9: error: 'String' was not declared in this scope
String aita = "";
^
input/code.cpp:16:13: error: 'aita' was not declared in this scope
aita += i;
^
input/code.cpp:20:13: error: 'aita' was not declared in this scope
aita += i;
^
input/code.cpp:24:21: error: 'aita' was not declared in this scope
cout << aita;
^
input/code.cpp:10:12: warning: unused variable 'k' [-Wunused-variable]
int n, k;
^