生成二维数组
#import numpy as np
x=int(input("请输入行数"))
y=int(input("请输入列数"))
erweishuzu1=np.zeros((x,y),dtype=int)
print(erweishuzu1)