| 3 | using namespace std; |
| 4 | |
| 5 | int main(){ |
| 6 | int a = 20; |
| 7 | int b = 10; |
| 8 | |
| 9 | cout<<"a+b "<<a+b<<endl; //adding a and b |
| 10 | cout<<"a-b "<<a-b<<endl; //subtracting b from a |
| 11 | cout<<"a*b "<<a*b<<endl; //multiplying a and b |
| 12 | cout<<"a/b "<<a/b<<endl; //dividing b by a |
| 13 | cout<<"a%b "<<a%b<<endl; //remainder on dividing b by a |
| 14 | } |
| 15 | |
| 16 | /* |
| 17 | OUTPUT |
nothing calls this directly
no outgoing calls
no test coverage detected