weight, high = map(float, input().split())
BMI = weight / (high) ** 2
print("Normal" if BMI >= 18.5 and BMI <= 23.9 else "Abnormal")