Need help to solve the issue:
You have a magic box that doubles the number of items you put in it every day.
This program accepts the initial number of subjects and the number of days as input.
Task
Write a program to calculate and output the number of items on the last day.
My code :
Items = int(input))
Days = int(input))
While Days < 30:
print(items)
Items = Items * 2
Days = Days + 1
3