-코드
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')
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 13580번 Andando no tempo (0) | 2022.01.19 |
---|---|
[백준/파이썬] 1780번 종이의 개수 (0) | 2022.01.18 |
[백준/파이썬] 2630번 색종이 만들기 (0) | 2022.01.17 |
[백준/파이썬] 23375번 Arm Coordination (0) | 2022.01.17 |
[프로그래머스/파이썬] 시저 암호 (0) | 2022.01.16 |