w,h=map(float,input().split()) BMI=w/h**2 if 18.5<=BMI<=23.9: print("Normal") else: print("Abnormal")