← Back to List

17010번: Time to Decompress ↗

Solutions

Python 3
114 B | 114 chars
for i in range(int(input())):
    a,b=input().split()
    for j in range(int(a)):
        print(end=b)
    print()