Enter two value from user to give addition and substraction and division and multiplication

use this code 
..............................................................................................


#include<iostream>
using namespace std;
void main()
{
int x;
int y;
cout << "Type a number=" << endl;
cin >> x;
cout << "please enter your second number" << endl;
cin >> y;
cout <<"the sum of these two number= "<< x +y<<endl;
cout << "the substraction of these two number=" << x - y<<endl;
cout << "the multiplication of these two number=" << x * y<<endl;
cout << "the division of these two number=" << x / y<<endl;
}