fork download
  1. n = int(input())
  2. sum_value = 50 * (n // 12) + 5 * (n % 12)
  3. print(sum_value)
Success #stdin #stdout 0.02s 9440KB
stdin
45
stdout
195