#include <stdio.h>

int main() {
    double weight,height;
    scanf("%lf%lf",&weight,&height);
    double bim=weight/height/height;
    if((bim>=18.5)&&(bim<=23.9))
    printf("Normal");
    else
     printf("Abnormal");
    return 0;
}