#include<stdio.h> #include <math.h> int main(){ int x=300,y=500,xf=0; xf=(x*x+y*y)/(2*x +sqrt(x+y)); printf("xf=%d",xf); }