Time Limit: 1s
Memory Limit: 128MB
다음 코드에서 "print a times"만 a번 출력해보자.
제출 시 YOUR_CODE에 들어갈 부분만 제출하면 된다.
* Line 1: a, b가 공백으로 구분되어 한 줄로 주어진다.
* Line 1~a: "print a times"를 a번 출력한다.
#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); YOUR_CODE printf("do not print this\n"); printf("do not print this\n"); } } }
3 5
print 3 times print 3 times print 3 times