input_list = list(map(int, input().split()))
올림 하는 방법 - math.ceil()
내림 하는 방법 - math.floor()
소수점 버림 하는 방법 - math.trunc()
반올림 하는 방법 - round() // 사사오입으로 적용함
문제에서 나와있는 공식을 그대로 계산하면 되는 문제이다.
소수점 이하의 값을 버리라는 조건이 있어서 math.trunc()를 사용했다.
import math
w, r = list(map(int, input().split()))
print (f"{math.trunc(w * (1 + r / 30))}")
유익한 글이었습니다.