diff --git "a/BasicLevel_Python/1036 \350\267\237\345\245\245\345\267\264\351\251\254\344\270\200\350\265\267\347\274\226\347\250\213 (15\345\210\206).py" "b/BasicLevel_Python/1036 \350\267\237\345\245\245\345\267\264\351\251\254\344\270\200\350\265\267\347\274\226\347\250\213 (15\345\210\206).py" new file mode 100644 index 0000000..0275434 --- /dev/null +++ "b/BasicLevel_Python/1036 \350\267\237\345\245\245\345\267\264\351\251\254\344\270\200\350\265\267\347\274\226\347\250\213 (15\345\210\206).py" @@ -0,0 +1,12 @@ +a,b=input().split() +a=int(a) +c=a/2 +if str(c)[-1]=="5": + Columns_Num=int(c)+1 +else: + Columns_Num=int(c) + +print(b*a) +for i in range(Columns_Num-2): + print(b+' '*(a-2)+b) +print(b*a)