#includeint main() { float a = 1; float b = 1; float s = 0; int i; float t; for (i = 1; i <= 20; i++) { a = a + b; b = a - b; t = (a / b); s = s + t; } printf_s("%f", s); }

#includeint main() { float a = 1; float b = 1; float s = 0; int i; float t; for (i = 1; i <= 20; i++) { a = a + b; b = a - b; t = (a / b); s = s + t; } printf_s("%f", s); }