#include using namespace std; int main() { int x = 10, y = 5; cout << "x - y = " << x - y << endl; cout << "x * y = " << x * y << endl; cout << "x / y = " << x / y << endl; return 0; }