bizarre.cpp:4:1: error: ‘__int64’ does not name a type
__int64 n,m,a[N],nn=1,b[N],mm;
^
bizarre.cpp: In function ‘int main()’:
bizarre.cpp:7:17: error: ‘n’ was not declared in this scope
scanf("%I64d",&n);
^
bizarre.cpp:8:35: error: ‘a’ was not declared in this scope
for(i=1;i<=n;i++){scanf("%I64d",&a[i]);}
^
bizarre.cpp:9:17: error: ‘m’ was not declared in this scope
scanf("%I64d",&m);
^
bizarre.cpp:11:15: error: ‘a’ was not declared in this scope
printf("%d",a[m]);
^
bizarre.cpp:15:13: error: ‘a’ was not declared in this scope
std::sort(a+1,a+n+1);
^
bizarre.cpp:18:5: error: ‘nn’ was not declared in this scope
nn++;
^
bizarre.cpp:19:5: error: ‘b’ was not declared in this scope
b[nn]=a[i];
^
bizarre.cpp:22:3: error: ‘b’ was not declared in this scope
b[nn+1]=21000000000;
^
bizarre.cpp:22:5: error: ‘nn’ was not declared in this scope
b[nn+1]=21000000000;
^
bizarre.cpp:6:8: warning: unused variable ‘j’ [-Wunused-variable]
int i,j;
^