CCC 2019 J2 - Time to Decompress
- Mac Zhang
- Jul 14, 2020
- 1 min read
Updated: Jul 21, 2020
This is an implementation question.
Solution:
Input the pair parameters n and x, print n number x.
def decode(n, x):
print(n*x)
m = int(input())
for i in range(m):
sr = input().split()
nn = int(sr[0])
xx = sr[1]
decode(nn, xx)
Comments