my code is as follows:
#include <bits/stdc++.h>
using namespace std;
int main()
{
int val;
cin>> val;
while(val != 42){
cout<< val;
cin>> val;
}
return 0;
}
getting SIGCONT error while running the above code in codechef ide.
I don’t know what’s wrong in this simple code. Please help!!!