fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int liczba_koszy;
  6. cin >> liczba_koszy;
  7. while(liczba_koszy != 10) {
  8. cout << liczba_koszy << " ";
  9. cin >> liczba_koszy;
  10. }
  11. cout << liczba_koszy;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5308KB
stdin
5 8 2 10 3 5 9
stdout
5 8 2 10