PROGRAMMING:Expressway speeding penalty
According to the regulations, motor vehicles driving on expressways that reach or exceed 10% of the speed limit of their own lanes will be fined 200 yuan; If it reaches or exceeds 50%, the driver's license will be revoked. Please write a program according to the speed and speed limit to automatically determine the treatment of the motor vehicle.
###Input format:
Input two positive integers in one line, corresponding to speed and speed limit respectively, separated by spaces.
###Output format:
Output processing opinions in one line: if it belongs to normal driving, output "OK"; If you should be fined, output "exceeded x%. Ticket 200"; If the driver's license should be revoked, output "exceeded x%. License revoked". Where x is the percentage of overspeed, to the nearest whole number.
###Input sample 1:
```in
65 60
```
###Output sample 1:
```out
OK
```
###Input sample 2:
```in
110 100
```
###Output sample 2:
```out
Exceed 10%. Ticket 200
```
###Input sample 3:
```in
200 120
```
###Output sample 3:
```out
Exceed 67%. License Revoked
```
answer:If there is no answer, please comment
###Input format:
Input two positive integers in one line, corresponding to speed and speed limit respectively, separated by spaces.
###Output format:
Output processing opinions in one line: if it belongs to normal driving, output "OK"; If you should be fined, output "exceeded x%. Ticket 200"; If the driver's license should be revoked, output "exceeded x%. License revoked". Where x is the percentage of overspeed, to the nearest whole number.
###Input sample 1:
```in
65 60
```
###Output sample 1:
```out
OK
```
###Input sample 2:
```in
110 100
```
###Output sample 2:
```out
Exceed 10%. Ticket 200
```
###Input sample 3:
```in
200 120
```
###Output sample 3:
```out
Exceed 67%. License Revoked
```
answer:If there is no answer, please comment