restructure zeta/** to storage/zeta/**
This commit is contained in:
7
storage/zeta/py/completed/2752.py
Normal file
7
storage/zeta/py/completed/2752.py
Normal file
@@ -0,0 +1,7 @@
|
||||
T = list(map(int, input().split()))
|
||||
for i in range(2):
|
||||
for j in range(2 - i):
|
||||
if T[j] > T[j + 1]:
|
||||
T[j], T[j + 1] = T[j + 1], T[j]
|
||||
for i in T:
|
||||
print(i, end=' ') # 버블
|
||||
Reference in New Issue
Block a user