20. Predict the output of the following code :

days = int( input ("Input days: " ) ) * 3 6 0 0 * 24
hours = int(input("Input hours: " ) ) * 3600
minutes = int(input("Input minutes: " ) ) * 60
seconds = int(input("Input seconds: "))
time = days + hours + minutes + seconds
print("The amounts of seconds” , time)

If the input given is in this order : 1, 2, 3, 4

# output
The amounts of seconds 93784