Submit code not working

so my code is right. but when i click submit code or run code nothing is happening. smaller codes are working.
#include
using namespace std;
int main() {
char ch;
int n1,n2;
cin>>ch;
while(ch!=‘X’||ch!=‘x’){
switch(ch){
case ‘+’: cin>>n1>>n2;
cout<<n1+n2;
break;
case '’: cin>>n1>>n2;
cout<<n1
n2;
break;
case ‘-’: cin>>n1>>n2;
cout<<n1-n2;
break;
case ‘/’: cin>>n1>>n2;
cout<<n1/n2;
break;
case ‘%’: cin>>n1>>n2;
cout<<n1%n2;
break;
default : cout<<“invalid operation. Try again.”;

    }
    cin>>ch;
}
return 0;

}

@JerryMavely hey jerry do hard refresh

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.