#include int main() { double x, y, z, w; scanf("%lf %lf %lf %lf", &x, &y, &z, &w); printf("%.20lf\n", (x - y * z) / 2.0); return 0; }