range(x) -> 0 이상 x 미만 1 간격range(a,b) -> a이상 b미만 1 간격range(a,b,c) -> a이상 b미만 c
# n = int(input())
# if n % 7 == 0:
# print('multiple')
# else:
# print('not multiple')
# n = float(input())
# if 50<=n<=60:
# print('win')
# else:
# print('lose')
# a, b, c = map(int, input().split( ) )
# if n1>170 and n2>170 and n3>170:
# print('PASS')
# else:
# print('CRASH')
# + - * /
# // % **
#
# A, B=input().split( )
# a = int(A)
# b = int(B)
# if a % b == 0:
# c=a//b
# print(b,'*',c,'=',a,sep='')
# elif b % a == 0:
# c=b//a
# print(a,'*',c,'=',b,sep='')
# else:
# print('none')
# Y, M=input().split( )
# y=int(Y)
# m=int(M)
# if m==2:
# if y % 400 == 0:
# print(29)
# elif y % 4 == 0 and y % 100 > 0:
# print(29)
# else:
# print(28)
# elif m==1 or m==3 or m ==5 or m==7 or m==8 or m==10 or m==12:
# print(31)
# elif m>12:
# print()
# else:
# print(30)
# n=int(input())
# x = int(1)
# while 0<x<n+1:
# print(x,)
# x+=1
# n=int(input())
# for x in range(1,n+1):
# print(x,end=' ')
#
# A, B=map(int, input().split(' '))
# if a<b:
# if a % 2 == 1:
# for x in range(a, b+1, 2):
# print(x)
# else:
# for x in range(a+1, b+1, 2):
# print(x)
# elif a < b:
# if a % 2 == 1:
# for x in range(a, b+1, 2):
# print(x)
# else:
# for x in range(a+1, b+1, 2):
# print(x)
# else:
# if a % 2 == 1:
# print(a)
# else:
# print()
# N = int(input())
# a = list(map(int, input().split()))
# print(sum(a))
# N = int(input())
# a = list(map(float, input().split()))
# print(round(max(a)))
a = []
for x in range(5) :
b = int(input())
a.append(b)
print(a)
range(x) -> 0 이상 x 미만 1 간격
range(a,b) -> a이상 b미만 1 간격
range(a,b,c) -> a이상 b미만 c간격