- include < iostream>
using namespace std;
int main()
{
int a,b;
cout < <"Entrez deux nombres"<< endl;
cin > > a;
cin > > b;
cout < <"somme = " << a+b < < endl;
cout < <"different ="<< a-b < < endl;
cout < <"quotient ="<< a/b < < endl;
cout < <"reste ="<< a%b < < endl;
cin.sync();
cin.get();
return 0;