a = [*map(int,input().split())]

이랑

a = list(map(int, sys.stdin.readline().split()))

가 차이가 있나요