Your_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");
}
}
}
로 채점되는 문제입니다. printf가 안나오게 해보세요!
채점된 코드는 status에서 확인해보실 수 있어요 감사합니다.