#include <stdio.h> #include <math.h> int main(void) { int a = 1, b = 4, x = 23; printf("%f\n", (sin(x) * sin(x)) * (a + b) / (a - b)); return 0; }