(tire)
| 63 | |
| 64 | |
| 65 | def cuculate_level(tire): |
| 66 | motion = int(tire) |
| 67 | if motion == 1: |
| 68 | tire = 0.5 |
| 69 | elif motion == 2: |
| 70 | tire = 1 |
| 71 | elif motion == 3: |
| 72 | tire = 5 |
| 73 | elif motion == 4: |
| 74 | tire = 20 |
| 75 | else: |
| 76 | tire = 40 |
| 77 | return tire |
| 78 | |
| 79 | def read_from_cli(): |
| 80 | cnt = 0 |