#include <iostream>
using namespace std;
 
int main() 
{
    double x, y;
    cin >> x >> y;
    if (x<=y)
        cout <<"min="<< x << endl;
    else
        cout << "min=" << y << endl;
return 0;
}