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

#include
using namespace std;

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

hi @nakshjain updated https://ide.codingblocks.com/s/664006