Module: (Python) Chương trình con: Thủ tục và Hàm - 1


Problem

5/11

Hai lựa chọn

Problem

Viết thủ tục nhận hai tham số – số tự nhiên N và chuỗi S – và in chuỗi S ra màn hình, lặp lại N lần.

Ví dụ <đầu>
# Đầu vào Đầu ra
1 3
được rồi
okokok
Write the program below
# процедура  
# основная программа
n = int(input())
s = input()
printLine(n, s)  

     

Program check result

To check the solution of the problem, you need to register or log in!