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