#include <stdio.h>

int main() 
{
    int weight = 0;
    float high = 0.0f;

    scanf("%d %f",&weight,&high);
    float base = weight/(high*high);
    if (18.5<=base && base<=23.9)
        printf("Normal");
    else
        printf("Abnormal");
    return 0;
}