RosettaCodeData/Task/Zeckendorf-number-representation/C++/zeckendorf-number-representation-2.cpp
2023-07-01 13:44:08 -04:00

5 lines
211 B
C++

int main(void) {
//for (N G; G <= 101010N; ++G) std::cout << G << std::endl; // from zero to 101010M
for (N G(101N); G <= 101010N; ++G) std::cout << G << std::endl; // from 101N to 101010N
return 0;
}