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