#include <stdio.h> main() { double m = 0, s = 1; int i; for (i = 1; i <= 30; i++) { s *= i; m += s; } printf("%.2e\n", m); return 0; }