input/code.cpp:3:7: error: 'll' does not name a type
const ll MN = 1e5+100;
^
input/code.cpp:4:1: error: 'll' does not name a type
ll t[MN];
^
input/code.cpp: In function 'int main()':
input/code.cpp:7:9: error: 'll' was not declared in this scope
for(ll i = 0; i < MN; ++i) t[i] = -1;
^
input/code.cpp:7:19: error: 'i' was not declared in this scope
for(ll i = 0; i < MN; ++i) t[i] = -1;
^
input/code.cpp:7:23: error: 'MN' was not declared in this scope
for(ll i = 0; i < MN; ++i) t[i] = -1;
^
input/code.cpp:7:32: error: 't' was not declared in this scope
for(ll i = 0; i < MN; ++i) t[i] = -1;
^
input/code.cpp:8:5: error: 'll' was not declared in this scope
ll n,k;
^
input/code.cpp:9:10: error: 'n' was not declared in this scope
cin>>n>>k;
^
input/code.cpp:9:13: error: 'k' was not declared in this scope
cin>>n>>k;
^
input/code.cpp:10:12:...