RosettaCodeData/Task/Zeckendorf-arithmetic/C++/zeckendorf-arithmetic-4.cpp

11 lines
150 B
C++
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
int main(void) {
N G = 1001N;
G *= 101N;
std::cout << G << std::endl;
G = 101010N;
G += 101N;
std::cout << G << std::endl;
return 0;
}