v, s, t = map(int, input().split(" "))
if s / v <= t:
print("да")
else:
print("нет")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
v, s, t = map(int, input().split(" "))
if s / v <= t:
print("да")
else:
print("нет")