#include <iostream>
#include <iomanip>

using namespace std;

int main()
{

    double n=0, x=0; 

    while (cin >> n >> x) //will keep going until an integer is not entered
    {
       cout << "You entered the two integers " << setprecision(20) << x << " and " << n << endl;

       if (x-n <= (1.0/10000000) && n-x <= (1.0/10000000)) 
          cout  << "The numbers are almost equal" << endl;
    }

return 0;

}