n = int(input()) x = n*15 if x % 10 == 0: print(x//10) else: print(x//10+1)