← Back to List

15726번: 이칙연산 ↗

Solutions

Python 3
67 B | 67 chars
a,b,c=map(int,input().split(" "))
print(max(int(a*b/c),int(a/b*c)))