Why this error?

error
runguard: warning: timelimit exceeded (wall time): aborting command
runguard: warning: command terminated with signal 15

code
#include
using namespace std;
int main() {
char ch;
int a,b;
do
{
cin>>ch;
if(ch==β€˜X’|| ch==β€˜x’)
break;
else if(ch==’+’)
{
cin>>a>>b;
cout<<(a+b)<<endl;
}
else if(ch==’-’)
{
cin>>a>>b;
cout<<(a-b)<<endl;
}
else if(ch==’’)
{
cin>>a>>b;
cout<<(a
b)<<endl;
}
else if(ch==’/’)
{
cin>>a>>b;
cout<<(a/b)<<endl;
}
else if(ch==’%’)
{
cin>>a>>b;
cout<<(a%b)<<endl;
}
else if(ch==’+’)
{
cin>>a>>b;
cout<<(a+b)<<endl;
}
else
cout<<β€œInvalid operation. Try again.”<<endl;
}while(ch!=β€˜X’|| ch!=β€˜x’);
return 0;
}

@MANOJ bro please share your code using cb ide its very difficult to look at it like this(do indentation too)

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.