Leeee1111 / testjudge-asia

0 stars 0 forks source link

B0304 '*'三角形 #20

Open Leeee1111 opened 1 month ago

Leeee1111 commented 1 month ago
a=int(input())
for i in range(1,a+1):
    for j in range(i):
        print("*",end='')
    print()