Operators Statements C++ Tutorial

#include  
using namespace std; 
 
int main() 

  int x, y; 
 
  x = 10; 
  y = 3; 
  cout << x << " / " << y << " is " << x / y <<  
       " with a remainder of " << x  y << "\n";  
 
  x = 1; 
  y = 2; 
  cout << x << " / " << y << " is " << x / y << "\n" << 
          x << "  y;  
 
  return 0; 
}
10 / 3 is 3 with a remainder of 1
1 / 2 is 0
1 % 2 is 1"