fork(1) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n = 0,t;
  6. string s[1000], k;
  7. while(cin>>k)
  8. {
  9. s[n]=k;
  10. n++;
  11. }
  12.  
  13. if(n/12>=1)
  14. {
  15. t=0;
  16. int count=0;
  17. string b[13];
  18. for(int i=0;i<n;i++)
  19. {
  20. count++;
  21. if(count<=12)
  22. {
  23. b[t]=s[i];
  24. t++;
  25. // cout<<t<<endl;
  26. }
  27. if(count==12 || i==n-1)
  28. {
  29. for(int j=0;j<t;j++)
  30. {
  31. if(j!=t-1)
  32. cout<<b[j]<<",";
  33. else
  34. cout<<b[j]<<endl;
  35. }
  36. cout<<endl;
  37. t=0;
  38. count=0;
  39. if(i==n-1)
  40. break;
  41. }
  42. }
  43. }
  44. else
  45. {
  46. //string b[10];
  47. for(int j=0;j<n;j++)
  48. {
  49. if(j!=n-1)
  50. cout<<s[j]<<",";
  51. else
  52. cout<<s[j]<<endl;
  53. }
  54. }
  55. cout<<"hello"<<endl;
  56. return 0;
  57. }
  58.  
Success #stdin #stdout 0.01s 5460KB
stdin
50442142
50180028
50446804
50886998
50223096
50127771
50271282
50269856
50059500
50016214
50003714
50031324
50037052
50008812
50045777
50008681
50032000
50028772
50079683
50087751
50206980
50101871
50450675
50233814
50076243
50118093
50272290
50244849
50244413
50243714
50355095
50214897
50286409
50443870
50490797
50203320
50680151
50198900
50243129
50055277
50223446
50082464
50313848
50272347
50243603
50075519
50322499
50161817
50308048
50886994
50114955
50523497
50275766
50371640
50271487
50501395
50664677
50962345
50172190
50127835
50233199
50059062
50136004
50428993
50095767
50045974
51424872
50289356
50275895
50323693
50126335
50373707
50094519
50110900
50422597
50108032
50207706
50683155
50776113
51171284
51057139
50875612
51010116
50828509
51392616
51361203
51321615
51076046
50599683
50066293
50228843
50693522
50016403
51176113
51083422
51331335
51473832
50698506
51262260
50969769
50216023
51455172
50965568
50622362
51330542
51303255
50982764
51019184
51158835
51232066
51087297
50509463
51457343
51454798
51321720
51387357
51075396
50613211
51174095
51414478
50881536
51285003
50618042
51267575
51345858
51470863
50943926
51142303
51268769
50586087
51188245
51169018
51314871
50551321
50846987
51439245
51148147
51249852
50549465
50160745
50663644
51190259
51155259
50916263
50532073
51112415
50250117
50634923
50681313
50632242
50979975
50341373
51268839
51203590
51463751
50588858
51169496
50707054
50983150
51105478
50890606
50627205
50601291
50677051
50189405
51173351
51210736
51026754
51071556
50570370
50658873
51100551
51137711
50868349
51322450
stdout
50442142,50180028,50446804,50886998,50223096,50127771,50271282,50269856,50059500,50016214,50003714,50031324

50037052,50008812,50045777,50008681,50032000,50028772,50079683,50087751,50206980,50101871,50450675,50233814

50076243,50118093,50272290,50244849,50244413,50243714,50355095,50214897,50286409,50443870,50490797,50203320

50680151,50198900,50243129,50055277,50223446,50082464,50313848,50272347,50243603,50075519,50322499,50161817

50308048,50886994,50114955,50523497,50275766,50371640,50271487,50501395,50664677,50962345,50172190,50127835

50233199,50059062,50136004,50428993,50095767,50045974,51424872,50289356,50275895,50323693,50126335,50373707

50094519,50110900,50422597,50108032,50207706,50683155,50776113,51171284,51057139,50875612,51010116,50828509

51392616,51361203,51321615,51076046,50599683,50066293,50228843,50693522,50016403,51176113,51083422,51331335

51473832,50698506,51262260,50969769,50216023,51455172,50965568,50622362,51330542,51303255,50982764,51019184

51158835,51232066,51087297,50509463,51457343,51454798,51321720,51387357,51075396,50613211,51174095,51414478

50881536,51285003,50618042,51267575,51345858,51470863,50943926,51142303,51268769,50586087,51188245,51169018

51314871,50551321,50846987,51439245,51148147,51249852,50549465,50160745,50663644,51190259,51155259,50916263

50532073,51112415,50250117,50634923,50681313,50632242,50979975,50341373,51268839,51203590,51463751,50588858

51169496,50707054,50983150,51105478,50890606,50627205,50601291,50677051,50189405,51173351,51210736,51026754

51071556,50570370,50658873,51100551,51137711,50868349,51322450

hello