Program iloraz

#include <iostream>
#include <cstdlib>

using namespace std;

int main()
{
int a,b,iloraz;

cout << “To jest program ILORAZ\n\n”;
cout << “Podaj a: “;
cin >> a;
cout << “Podaj b: “;
cin >> b;

iloraz = a / b;

cout << endl << “O to twoj wynik ” << endl << a << “/” << b << “=” << iloraz;

}