Please identify mistake in my code

#include
using namespace std;
int main() {
char ch;
cin>>ch;
long long int N1;
cin>>N1;
long long int N2;
cin>>N2;
while(ch!=‘x’ and ch!=‘X’){
switch(ch){
case ‘+’:
cout<<N1+N2<<endl;
break;
case ‘-’:
cout<<N1-N2<<endl;
break;
case '’:
cout<<N1
N2<<endl;
break;
case ‘/’:
cout<<N1/N2<<endl;
break;
case ‘%’:
cout<<N1%N2<<endl;
break;
default:
cout<<"Invalid operation. Try again. "<<endl;
}
}

return 0;

}

https://ide.codingblocks.com/s/591451 refer this

Thank you Issue resolved.

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.