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