#include<stdio.h>
int main()
{
    float BMI;
    sacnf("%f", &BMI);
    if(BMI < 18.5)
    {
        printf("Undeweight");
        
    }
    else
    {
        printf("Over weight");
        
    }
    return 0;
}