#include #include #include #include using namespace std; int main() { int a, b; // Read the first pair of numbers. cin >> a >> b; while ( a != b ) { if ( a < b ) cout << "Less" << endl; else if ( a > b ) // Don't really need this test. cout << "More" << endl; // Read the next pair of numbers. cin >> a >> b; } }