3 lines
56 B
Python
3 lines
56 B
Python
|
list=[]
|
||
|
for i in range(4):
|
||
|
list.append(int(input()))
|