5 lines
88 B
C++
5 lines
88 B
C++
|
|
int main(){
|
||
|
|
N n(31);
|
||
|
|
int z{};for (;n.hasNext();++z); std::cout << z << std::endl;
|
||
|
|
}
|