#include <stdio.h>
#include<math.h>

int main() {
    float a, b;
    scanf("%f %f", &a, &b);
       float BMI=a/pow(b,2);
        if(BMI>=18.5&&BMI<=23.9)printf("Normal");
        else printf("Abnormal");
    return 0;
}