num = int(input("Please enter a number: ")) print("Here are the multiples of", num) for i in range(1,15): print(i, num * i, sep='\t')