import math
w,h=map(float,input().split(' '))
BMI=w/math.pow(h,2)
if BMI>=18.5 and BMI<=23.9:
print('Normal')
else:
print('Abnormal') 
import math
w,h=map(float,input().split(' '))
BMI=w/math.pow(h,2)
if BMI>=18.5 and BMI<=23.9:
print('Normal')
else:
print('Abnormal')