import java.util.Scanner;

public class A03 {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner input = new Scanner(System.in);
		System.out.println("请输入您的成绩:");
		int Results = input.nextInt();
		int choice = Results / 10;
		String show = "";
		switch (choice) {
		case 10:
			show = "宝马";
			break;
		case 9:
			show = "电脑";
			break;
		case 8 :
		case 7 :
			show="手机";
			break;
		default:
			show="没有奖励!";
			break;
		}
		System.out.println("奖励物品:"+show);
	}

}