Zeros and Ones

  • + 0 comments
    import numpy
    l=list(map(int,input().split()))
    print(numpy.zeros((l),dtype=int))
    print(numpy.ones((l),dtype=int))