#include int main(void) { long double z = 0.179; int i = 0; while(z > 1e-20) { z *= 0.99; i++; } printf("%d %.1fs\n", i, i / 24.); return 0; }