seconds = int(input("give me a number of seconds")) h = seconds//3600 m = seconds//60%60 s = seconds%60 print("seconds is",str(h) + "h",str(m) + "m",str(s) + "s")