[M] Move non-course-related files to misc

This commit is contained in:
Hykilpikonna
2021-12-22 01:03:28 -05:00
parent 12b83a05dd
commit f1e4cd9488
24 changed files with 1 additions and 1 deletions
-7
View File
@@ -1,7 +0,0 @@
# Output two different ways you can enter a time duration on the microwave
if __name__ == '__main__':
while True:
s = int(input())
print(f'{s // 60}:{s % 60:02}')
if s >= 60:
print(f'{s // 60 - 1}:{s - (s // 60 - 1) * 60:02}')