← Back to List

2438번: 별 찍기 - 1 ↗

Solutions

Python 3
55 B | 55 chars
for i in range(0, int(input())):
    print('*' * (i+1))