Add 1.21
This commit is contained in:
parent
8e5f9597bc
commit
7ee4f04a18
|
@ -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)
|
Loading…
Reference in New Issue