Eye and Identity

  • [deleted]Challenge Author
    + 0 comments

    For Python3

    import numpy
    
    numpy.set_printoptions(legacy="1.13")
    
    n, m = map(int, input().split())
    
    print(numpy.eye(n, m))