hr = int(input("Enter current hr:"))
min= int(input("Enter current min:"))
sec = int(input("Enter current sec:"))
print("Clock time now is",hr,":",min,":",sec)
sec= sec+1
print("After 1 second, the time is",hr,":",min,":",sec)
how do i also limit the input so to a certain range? like the input for hours only accepts range from 0-23 and mins 0-50 secs 0-59? and how do i make the sec + 1 to automatically update the end time for hrs and mins? lets say 23 : 59 : 59+1 = 00:00:00