import java.util.Scanner;

public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); double height = scanner.nextDouble(); double weight = scanner.nextDouble();

    //write your code here......
    double temp = weight/(height * height);
    if(temp < 18.5){
        System.out.print("偏瘦");
    }else if(temp >= 18.5 && temp < 20.9){
        System.out.print("苗条");
    }else if(temp >= 20.9 && temp <= 24.9){
        System.out.print("适中");
    }else{
        System.out.print("偏胖");
    }
    
}

}