bài 1
a=int(input('a= '))
b=int(input('b= '))
c=int(input('c= '))
d=int(input('d= '))
e=[]#tạo ra 1 mảng để ném a,b,c,d vào
e.append(a)
e.append(b)
e.append(c)
e.append(d)
e.sort#sắp xếp các số từ bé->cao
print(e[0])
print(e[-1])
bài 2
while True:
a=int(input('a= '))
if a<1000 or a>9999...