#include<iostream>
using namespace std;
int main()
{
int h, m;
cin >> h >> m;
int BMI = h * h / m;
if(BMI < 18.5) cout << "underweight" << endl;
else if(BMI >= 18.5 && BMI < 24) cout << "Normal" << endl;
else if(BMI > 24) cout << BMI << endl << "Overweight";
return 0;
}