fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5.  
  6.  
  7. for(int A=1; A<=5; A++){
  8. cout << "\n";
  9. for(int B=1; B<=6; B++){
  10. cout << B;
  11. }
  12. }
  13. cout << endl;
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2740KB
stdin
Standard input is empty
stdout
123456
123456
123456
123456
123456