4522 - Loop Control1 (Snippet)

Time Limit: 1s Memory Limit: 128MB

Snippet Judge Submissions: 203 Solved: 121
Description

다음 코드에서 "print a×b times"만 a×b번 출력해보자.

제출 시 YOUR_CODE에 들어갈 부분만 제출하면 된다.

Input

* Line 1: a, b가 공백으로 구분되어 한 줄로 주어진다.

Output

* Line 1~a×b: "print a×b times"를 a×b번 출력한다.

Sample Code
#include <stdio.h>
void main(){
    int a, b;
    scanf("%d %d",&a,&b);
    for(int i=0;i<a;i++){
        for(int j=0;j<b;j++){
            printf("print %d times\n",a*b);
            YOUR_CODE 
            printf("do not print this\n");
            printf("do not print this\n");
        }
    }
}
Sample Input
3 5
Sample Output
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times
print 15 times