def main(): N = int(input()) if N <= 6: print(N) else: print(N*7-36) if __name__ == '__main__': main()