Using the code below, if the user enters 7800, what is the value of SecsStillRemaining?
StrSeconds = input("Please enter the number of seconds you wish to convert")
TotalSecs = int(StrSeconds)
Hours = TotalSecs // 3600
SecsStillRemaining = TotalSecs % 3600
Minutes = SecsStillRemaining // 60
SecsFinallyRemaining = SecsStillRemaining % 60
print("Hrs=", Hours,",Mins=", Minutes, ", Secs=",SecsFinallyRemaining)