#include
main()
{
int x,y;
for(x=1;x<=10;x++)
for(y=1;y<=25;y++)
if((x*x+4*y)==100)
printf("x=%d,y=%dn",x,y);
}