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