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