#244. stringTimes

stringTimes

Background

Description

Given a string and a non-negative int n, return a larger string that is n copies of the original string.

Format

Input

Output

Samples

Hi" 
"HiHi"
Hi" 
"HiHiHi"
Hi" 
"Hi"

Limitation

1s, 1024KiB for each test case.