TORONTO KIDS COMPUTER CLUB | Saturday 09:30 Python Homework 05.17.
16296
post-template-default,single,single-post,postid-16296,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Saturday 09:30 Python Homework 05.17.

21 May Saturday 09:30 Python Homework 05.17.

Question:

Important!!!! Please read question through carefully, if you have any questions, please do not hesitate to contact me through weChat. The problem solving thinking of this question will help you understand future computer competition questions. 

You and your friend have come up with a way to send messages back and forth.
Your friend can encode a message to you by writing down a positive integer N and a symbol. You can decode that message by writing out that symbol N times in a row on one line.
Given a message that your friend has encoded, decode it.

Input Specification(please follow the input specification exactly!!)
The first line of input contains L, the number of lines in the message.
The next L lines each contain one positive integer less than 80, followed by one space, followed by a (non-space) character.

Output Specification(please follow the output specification exactly!!)
The output should be L lines long. Each line should contain the decoding of the corresponding line of the input. Specifically, if line i + 1 of the input contained N x, then line i of the output should contain just the character x printed N times.

Sample Input
4
9 +
3 –
12 A
2 X

Output for Sample Input
+++++++++
– – –
AAAAAAAAAAAA
XX

Again, please contact me if you do not understand the question!!!!

No Comments

Sorry, the comment form is closed at this time.