fork(1) download
  1. #include <iostream>
  2.  
  3. int main(){
  4. int a=0;
  5. int b=100;
  6. int c=40000;
  7. while(a<250)
  8. {
  9. std::cin >> a >> b >> c;
  10. std::cout << a << "\t" << b << "\t" << c << std::endl;
  11. ++a;
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 3460KB
stdin
0 34 56
120 34 56
320 34 56
stdout
0	34	56
120	34	56
320	34	56