반응형
SMALL

기본 코드 없이 시작....

 itertools 모듈에 product 기능을 이용해서 

문제를 해결

 

 

# Enter your code here. Read input from STDIN. Print output to STDOUT
from itertools import product
a=list(map(int,input().split()))

b=list(map(int,input().split()))

print(*product(a, b))

 

반응형
LIST

+ Recent posts