Hi Stefan this counting number can this be printed and shown in a human readable format e.g. ``` s = 300 print('{:02}:{:02}:{:02}'.format(s//3600, s%3600//60, s%60)) print('{:02}:{:02}'.format(s%3600//60, s%60)) ``` May be mintutes are enough regards Reimar