I am new to programming (obviously) and am looking to make a script where I can input a number and have it automatically divided by 1440 (the number of minutes in a day). I want this to be able to repeat itself over and over again. For example I enter 400 and it divides it by 1440. I then want to be able to enter another number directly after that without having to restart the script. How would I go about this? Can anyone lead me in the correct direction.
num1 = int(input("Enter First Number: "))
num2 = int(1440)
result = num1 / num2
print(result)