#include <iostream>

int main() {
	// your code goes here
	int a = 1999999900;
	float b = 2000000000;
	std::cout
		<< a << " / " << b << " = " << a / b << std::endl
		<< "where a" << ((a == b) ? " == " : " != ") << "b." << std::endl;
	return 0;
}