Basic calculator TLE error

#include
using namespace std;
int main() {
long long int a,b;
char ch;
cin>>ch;
while(ch!=‘x’ or ch!=‘X’){
cin>>a>>b;
if (ch=’+’){
cout<<a+b;
}
else if(ch=’-’){
cout<<a-b;

	}
	else if(ch=='*')
    {
		cout<<a*b<<endl;
    }
    else if(ch=='%' && b!=0)
    {
      
        cout<<a%b<<endl;
    }
    else if(ch=='/'&& b!=0)
    {
        
        cout<<a/b<<endl;
    }
	else
         cout<<"Invalid operation. Try again."<<endl;
    cin>>ch;
}
return 0;}

//TLE error

Here is your corrected code https://ide.codingblocks.com/s/346715

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.