#include<stdio.h>

int main()
{
    int a,b;
    for(a=1; a<5; a++){
        for(b=1; b        printf(\"%d\\n\",b);
    }    
}
이렇게하면 결과가
1
1
2
1
2
3
이렇게 나오는대 그이유좀 알려주세요 제발