Module: (Python) 서브루틴: 프로시저 및 함수 - 1


Problem

5/11

두 가지 옵션

Problem

두 개의 매개변수를 사용하는 프로시저를 작성합니다. 자연수 N과 문자열 S – 문자열 S를 N번 반복하여 화면에 출력합니다.

<헤드> <일># <몸>
입력 출력
1 3
알았어
오콕
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!