#include<bits/stdc++.h>
using namespace std;
double m,h;
float BMI;
int main(){
cin>>m>>h;
BMI=m/(h*h);
if(BMI<18.5){
cout<<"Underweight"<<endl;
}
if(BMI>=18.5&&BMI<24){
cout<<"Normal"<<endl;
}else{
cout<<setprecision(4)<<fixed<<BMI<<endl<<"Overweight"<<endl;
}
return 0;
}