/in/foo.cc: In function 'int main()':
/in/foo.cc:19:4: error: 'cin' was not declared in this scope
cin>>a;
^~~
/in/foo.cc:19:4: note: suggested alternative:
In file included from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:75:0,
from /in/foo.cc:2:
/usr/include/c++/6/iostream:60:18: note: 'std::cin'
extern istream cin; /// Linked to standard input
^~~
/in/foo.cc:20:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<strlen(a);i++){
~^~~~~~~~~~
/in/foo.cc:24:17: error: 'max' was not declared in this scope
mx=max(mx,a[i]);
^
/in/foo.cc:24:17: note: suggested alternative:
In file included from /usr/include/c++/6/algorithm:62:0,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:65,
from /in/foo.cc:2:
/usr/include/c++/6/bits/stl_algo.h:3465:5: note: 'std::max'
max(initializer_list<_Tp> __l, _Compare __comp)
^~~
/in/foo.cc:25:17: error: 'min' was not declared in this scope
mn=min(mn,a[i]);
^
/in/foo.cc:25:17: note: suggested alternative:
In file included from /usr/include/c++/6/algorithm:62:0,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:65,
from /in/foo.cc:2:
/usr/include/c++/6/bits/stl_algo.h:3453:5: note: 'std::min'
min(initializer_list<_Tp> __l, _Compare __comp)
^~~
/in/foo.cc:28:3: error: 'cout' was not declared in this scope
cout<<"Lucky Word\n"<<mx-mn;
^~~~
/in/foo.cc:28:3: note: suggested alternative:
In file included from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:75:0,
from /in/foo.cc:2:
/usr/include/c++/6/iostream:61:18: note: 'std::cout'
extern ostream cout; /// Linked to standard output
^~~~