Merge Week 1 #1

Merged
Kenwood merged 10 commits from week-1 into master 2021-01-08 21:14:34 -05:00
1 changed files with 13 additions and 0 deletions
Showing only changes of commit 7ee4f04a18 - Show all commits

View File

@ -0,0 +1,13 @@
if __name__ == '__main__':
user_num = int(input())
x = int(input())
result = []
for i in range(3):
if i == 0:
result.append(int(user_num / x))
else:
result.append(int(result[i - 1] / x))
print(*result)