#include<iostream>
#include<cstdlib>

int main(int argc, char *argv[])
{
	std::cout << " 5/ 3:  " <<  5/ 3 << "  5% 3:  " <<  5% 3 << std::endl;
	std::cout << " 5/-3:  " <<  5/-3 << "  5%-3:  " <<  5%-3 << std::endl;
	std::cout << "-5/ 3:  " << -5/ 3 << " -5% 3:  " << -5% 3 << std::endl;
	std::cout << "-5/-3:  " << -5/-3 << " -5%-3:  " << -5%-3 << std::endl;
	return EXIT_SUCCESS;
}
