Construir matriz identidad
Lee N e imprime la matriz identidad N x N.
Escribe tu solución
Plantilla de referencia
# Construir matriz identidad
# Enunciado:
# Lee N e imprime la matriz identidad N x N.
#
# Plantilla de salida esperada:
# Salida esperada: Lee N e imprime la matriz identidad N x N.
#
# TODO: escribe el resto del programa. No definas funciones.
n = int(input())