#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
	int dividend {0};
	cout << "What is the dividend? ";
	cin >> dividend;

	int divisor {0};
	cout << "What is the divisor? ";
	cin >> divisor;

	cout << "The quotient is " << dividend / divisor << ".\n";
	return EXIT_SUCCESS;
}