/in/foo.cc:10:5: error: conflicting declaration 'int ans'
int ans;
^~~
/in/foo.cc:3:11: note: previous declaration as 'long long int ans'
long long ans,outp=1,x,n,m,k;
^~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:14:23: error: no match for 'operator=' (operand types are 'std::basic_ostream<char>::__ostream_type {aka std::basic_ostream<char>}' and 'long long int')
cout<<ans=(x+m*outp)%n;
^
In file included from /usr/include/c++/6/iostream:39:0,
from /in/foo.cc:1:
/usr/include/c++/6/ostream:402:7: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator=(std::basic_ostream<_CharT, _Traits>&&) [with _CharT = char; _Traits = std::char_traits<char>]
operator=(basic_ostream&& __rhs)
^~~~~~~~
/usr/include/c++/6/ostream:402:7: note: no known conversion for argument 1 from 'long long int' to 'std::basic_ostream<char>&&'