fork download
  1. #include<iostream>
  2. using namespace std;
  3. struct node
  4. {
  5. int d;
  6. node* n;
  7. };
  8.  
  9. node *Insert(node *head, int x)
  10. {
  11. node *temp = new node();
  12. temp->d = x;
  13. temp->n = head;
  14. if(head == NULL)
  15. {
  16. head = temp;
  17. temp->n = head;
  18. return head ;
  19. }
  20.  
  21. node *temp1 = head;
  22.  
  23. while(temp1->n!=head)
  24. {
  25. temp1 = temp1->n;
  26. }
  27.  
  28. temp1->n = temp;
  29.  
  30. return head;
  31. }
  32. void show(node *head)
  33. {
  34. if(head == NULL)
  35. {
  36. cout<<"The list is Empty\n";
  37. return ;
  38.  
  39. }
  40.  
  41. node* temp = head;
  42.  
  43. cout<<temp->d<<" ";
  44. temp = temp->n;
  45. while(temp->n!= head)
  46. {
  47. cout<<temp->d<<" ";
  48. temp = temp->n;
  49. }
  50. cout<<temp->d<<" ";
  51.  
  52. }
  53. node *split1(node *h2,node *temp)
  54. {
  55. node *New = new node();
  56. New->d = temp->d;
  57. New->n = h2;
  58. if(h2 == NULL)
  59. {
  60. h2 = New;
  61. New->n = h2;
  62. return h2;
  63. }
  64.  
  65. node *temp3 = h2;
  66.  
  67. while(temp3->n!=h2)
  68. {
  69. temp3= temp3->n;
  70. }
  71.  
  72. temp3->n = New;
  73.  
  74. return h2;
  75. }
  76. node *split2(node *h2,node *temp)
  77. {
  78. node *New = new node();
  79. New->d = temp->d;
  80. New->n = h2;
  81. if(h2 == NULL)
  82. {
  83. h2 = New;
  84. New->n = h2;
  85. return h2;
  86. }
  87.  
  88. node *temp3 = h2;
  89.  
  90. while(temp3->n!=h2)
  91. {
  92. temp3= temp3->n;
  93. }
  94.  
  95. temp3->n = New;
  96.  
  97. return h2;
  98. }
  99. void split(node *head)
  100. {
  101. node *h1 = NULL;
  102. node *h2 = NULL;
  103.  
  104. node *temp = head;
  105. int c=1;
  106. do
  107. {
  108. if(c%2!= 0)
  109. {
  110. h2 = split1(h2,temp);
  111.  
  112. }
  113. if(c%2 == 0)
  114. {
  115. h1 = split2(h1,temp);
  116. }
  117. temp = temp->n;
  118. c++;
  119. }while(temp->n!=head);
  120.  
  121. cout<<endl;
  122. cout<<"The split list is\nfirst one\n";
  123. show(h2);
  124. cout<<endl;
  125. cout<<"The second one\n";
  126. show(h1);
  127. cout<<temp->d<<" ";
  128. cout<<endl;
  129.  
  130. }
  131. int main()
  132. {
  133. int ch;
  134. node *head = NULL;
  135.  
  136. do
  137. {
  138. system("cls");
  139. cout<<"Enter your choice \n1.To create circular link list\n2.To display 3.To display splitted list\n4.To Exit\n";
  140. cin>>ch;
  141.  
  142. if(ch == 1)
  143. {
  144. int x;
  145. cout<<"Enter the element of Circular link list....enter 0000 to Exit\n";
  146. while(1)
  147. {
  148. cin>>x;
  149. if(x == 0000)
  150. break;
  151. head = Insert(head,x);
  152. }
  153. }
  154. if(ch == 2)
  155. {
  156. cout<<"The circular link list is\n";
  157. show(head);
  158. }
  159. if(ch ==3)
  160. {
  161. cout<<"The split node is \n";
  162. split(head);
  163. }
  164. system("pause");
  165. }while(ch!=4);
  166.  
  167. return 0;
  168. }
  169.  
Runtime error #stdin #stdout #stderr 0.02s 15240KB
stdin
Standard input is empty
stdout
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circular link list
2.To display 3.To display splitted list
4.To Exit
Enter your choice 
1.To create circu
stderr
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found
sh: 1: pause: not found
sh: 1: cls: not found