You are viewing a single comment's thread. Return to all comments →
import numpy as np N,M,P = map(int,input().split()) array_1 = np.array([input().split() for _ in range(N)],int) array_2 = np.array([input().split() for _ in range(M)],int) print(np.concatenate((array_1,array_2), axis = 0))
Seems like cookies are disabled on this browser, please enable them to open this website
Concatenate
You are viewing a single comment's thread. Return to all comments →