Eye and Identity

  • + 0 comments
    import numpy as np
    
    np.set_printoptions(legacy='1.13')
    
    n, m = map(int, input().split())
    
    print(np.eye(n, m))