Posted on September 16, 2020September 16, 2020 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)) By Bill0412 HackerRank Numpy Python