#includeint isdiv(int n){ if(n%9==0) return 1; return 0;}void main(){ int i; for(i=100;i<=200;i++) if(isdiv(i)) printf("%d ",i);}