We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Numpy
- Concatenate
- Discussions
Concatenate
Concatenate
Sort by
recency
|
443 Discussions
|
Please Login in order to post a comment
n,m,p = map(int,input().split())
print(np.array([list(map(int,input().split())) for _ in range(n+m)]))
Fast :