#include <stdio.h>
int main() {
double m{}, h{};
scanf("%lf %lf", &m, &h);
double c = m * 1.0 / (h * h);
if (c < 18.5) {
printf("Underweight");
}
else if (c >= 18.5 && c < 24) {
printf("Normal");
}
else if (c >= 24) {
printf("%lf\nOverweight",c);
}
return 0;
}