x = int(input())

if x < 16:
    print(x*6)
else:
    m = x - 16
    print(m + 96)

5 条评论

  • 1