Eye and Identity

  • + 0 comments

    For Python3 Platform

    import numpy
    
    numpy.set_printoptions(legacy='1.13')
    
    N, M = map(int, input().split())
    
    print(numpy.eye(N, M))