Problem p: CCC '12 J1 - Speed fines are not fine!

Problem p: CCC '12 J1 - Speed fines are not fine!

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 261  Solved: 30
[Submit] [Status] [Web Board] [Creator:]

Description

10 points:
English:

Many communities now have "radar" signs that tell drivers what their speed is, in the hope that they will slow down.

You will output a message for a "radar" sign. The message will display information to a driver based on his/her speed according to the following table:                  
km/h over the limit
Fine 
1 to 20  
$ 100
21 to 30
$ 270 
31 or above 
$ 500 


Chinese:

现在,许多社区都有“雷达”标志,告诉驾驶员他们的速度是多少,希望他们能减速。

你将给出 雷达” 标志上的数字。根据下表的驾驶员的速度来判断给驾驶员显示信息:

超出限制的km / h

罚款

1 20  

$ 100

21 30

$ 270 

31 及以上

$ 500 


Input

English:

The user will be prompted to enter two integers. First, the user will be prompted to enter the speed limit. Second, the user will be prompted to enter the recorded speed of the car.

Chinese: 


系统将提示用户输入两个整数。首先,用户输入速度限制。其次,用户输入汽车的速度。


Output

English:

If the driver is not speeding, the output should be: Congratulations, you are within the speed limit
If the driver is speeding, the output should be: You are speeding and your fine is $ F  
where F is the amount of the fine as described in the table above.


Chinese:


如果驾驶员没有超速,则输出应为:Congratulations, you are within the speed limit
意思为:恭喜,您在速度限制之内


如果驾驶员超速,则输出应为:You are speeding and your fine is $

意思为:您已超速,罚款为$F

其中F是上表所述的罚款金额。




Sample Input Copy

40
39

Sample Output Copy

Congratulations, you are within the speed limit