n = int(input()) if n <= 3: print(n) else: print((n-3)*5 + 3)