108.py 1 2 3 4terms = int(input("Enter Number Of Terms : ")) for number in range(1, terms + 1): print(number ** 3)