본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 20687번 Rulltrappa

by 현장 2022. 1. 18.

-코드

m, s, g = map(int, input().split())
a, b = map(float, input().split())
l, r = map(int, input().split())
result1 = m / s + r / b
result2 = m / g + l / a
print('friskus' if result1 > result2 else 'latmask')