1 #include<iostream> 2 int main(){ 3 int i; 4 while(1){ 5 std::cin>>i; 6 if(i==0) 7 break; 8 } 9 return 10; 10 }