Zeros and Ones

  • + 1 comment
    import numpy
    a,b,c = input().split()
    print(numpy.zeros((int(a),int(b),int(c)), dtype = numpy.int))
    print(numpy.ones((int(a),int(b),int(c)), dtype = numpy.int))
    

    Does anyone know why this code produces a runtime error for cases 2 and 3?