main() { int x,y; for(x=0;x<100;x++)
{ y=100-x; if(4*x+(100-x)/4==100) printf("%d %d\n",x,y); } getch();
}