I am submitting my code ,and it show nothing ,
Hackerblock idle not working properly
#include
using namespace std;
int main() {
char ch;
long long int a,b;
cin>>ch;
while(ch!=‘X’||ch!=‘x’){
switch(ch){
case '’:
cin>>a>>b;
cout<<ab<<endl;
break;
case ‘+’:
cin>>a>>b;
cout<<a+b<<endl;
break;
case ‘/’:
cin>>a>>b;
cout<<a/b<<endl;
break;
case ‘-’:
cin>>a>>b;
cout<<a-b<<endl;
break;
default :
cout<<“Invalid operation”;
}
cin>>ch;
}
return 0;
}