get 0 to Bigint n from cin. but n==0 is not true. code is below. ```cpp int main() { Dodecahedron::Bigint n; while(cin >> n){ //if(Dodecahedron::to_string(n)=="0"){//ok //if(n==n*0){//ok if(n==0){//do not work break; } cout << n << "\n"; } return 0; } ```
get 0 to Bigint n from cin.
but n==0 is not true.
code is below.