#include <stdio.h>
#include <stdlib.h>
int main()
{
int b;
float m,h,BMI;
scanf("%f %f",&m,&h);
BMI=1.0*m/h/h;
if(BMI<18.5)
printf("Underweight\n");
else if(BMI>=18.5&&BMI<24)
printf("Normal\n");
else
{
b=(int)(BMI*100+0.5);
BMI=b/100;
printf("%.2f\nOverweight",BMI);
}
return 0;
}