#include<stdio.h>
main()
{
int i=0;
do{
if(i%7==0 && i%9==0)
printf (\"%d\",i);
i++;}while(i<=100);
}


이건데 결과가 063 으로 나오는데 앞에 왜 0이 붙는 거지?