#include using namespace std; int main() { int x=10/5; cout << "X is " << x << endl; x=10%3; cout << "X is " << x << endl; // Success return 0; }