15726번 풀이 [Python]

sua·2022년 7월 2일
0

Baekjoon

목록 보기
72/161
post-thumbnail

문제


풀이

a, b, c = map(int, input().split())
n = a * b / c
m = a / b * c

if(n > m):
    print(int(n))
else:
    print(int(m))
profile
가보자고

0개의 댓글