← Back to List

34454번: Roller Coaster Ride ↗

Solutions

Python 3
81 B | 81 chars
a = int(input())
b = int(input()) * int(input())
print("yes" if b >= a else "no")