Posted on

Description

Submission

import numpy
n, m, p = [int(s) for s in input().split()]
arr = list()
for _ in range(n + m):
arr.append([int(s) for s in input().split()])
print(numpy.array(arr))
import numpy n, m, p = [int(s) for s in input().split()] arr = list() for _ in range(n + m): arr.append([int(s) for s in input().split()]) print(numpy.array(arr))
import numpy

n, m, p = [int(s) for s in input().split()]

arr = list()

for _ in range(n + m):
    arr.append([int(s) for s in input().split()])

print(numpy.array(arr))

    

Leave a Reply

Your email address will not be published. Required fields are marked *