#include<bits/stdc++.h> using namespace std; int main(){ double n,h,a; cin>>n>>h; a=n/pow(h,h); if(a<18.5){ cout<<"Underweight"; } else if(a>=18.5&&a<24){ cout<<"Normal"; } else{ cout<<a<<endl; cout<<"Overweight"; } return 0; }