Note

[codeup] 128. 축구의 신 1 본문

etc/Coding Test

[codeup] 128. 축구의 신 1

알 수 없는 사용자 2022. 1. 27. 00:00
728x90
a,b = map(int, input().split())
if a%5 == 0:
  print(int(((90-a)/5)+b))
else:
  print(int(((90-a)/5)+1+b))
Comments