#include <stdio.h>

struct weight 
{
    int n;
};
int main ()
{
    struct weight bmi; 
    scanf("%d",&bmi.n);
    if(n<18.5)
    {
        printf("Underweight");
    }
    else if(18.5<=24.9)
    {
        printf("Normal weight");
    }
    else
    {
       printf("Overweight");
    }
}