#include #include int main(void){ float a = 2, b = 3, x = 3.5, y = 2.6; printf("%f\n", (float)(a+b)/2 + sqrt(a) - (int)(y-x)); return 0;}