weight,height = map(float,input().split()) BMI = weight / (height**2) print('Normal') if 18.5 <= BMI <= 23.9 else print('Abnormal')