i am not able to understand whast wrong in
this solution
#include
using namespace std;
int main() {
char ch;
int N1, N2, ans;
do{
cin>>ch;
cin>>N1;
cin>>N2;
if(ch==ββ){
ans=N1N2;
cout<<ans<<endl;
}
else if(ch==β-β){
ans=N1-N2;
cout<<ans<<endl;
}
else if(ch==β+β){
ans=N1+N2;
cout<<ans<<endl;
}
else if(ch==β%β){
ans=N1%N2;
cout<<ans<<endl;
}
else if(ch==β/β){
ans=N1/N2;
cout<<ans<<endl;
}
else{
cout<<βInvalid operation. Try again.β<<endl;
}
}
while(ch=='x' || ch=='X');
return 0;
}