fork download
  1. import java.util.*;
  2. import java.io.*;
  3. public class Main {
  4. static FastReader in=new FastReader();
  5. static final Random random=new Random();
  6. static long mod=1000000007L;
  7. static HashMap<String,Integer>map=new HashMap<>();
  8.  
  9. public static void main(String args[]) throws IOException {
  10. int t=in.nextInt();
  11. StringBuilder res=new StringBuilder();
  12. int cse=1;
  13. loop:
  14. while(t-->0)
  15. {
  16. res.append("Hello"+"\n");
  17. }
  18. print(res);
  19.  
  20. }
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. static int max(int a, int b)
  28. {
  29. if(a<b)
  30. return b;
  31. return a;
  32. }
  33.  
  34.  
  35. static void ruffleSort(int[] a) {
  36. int n=a.length;
  37. for (int i=0; i<n; i++) {
  38. int oi=random.nextInt(n), temp=a[oi];
  39. a[oi]=a[i]; a[i]=temp;
  40. }
  41. Arrays.sort(a);
  42. }
  43.  
  44. static < E > void print(E res)
  45. {
  46. System.out.println(res);
  47. }
  48.  
  49.  
  50. static int gcd(int a,int b)
  51. {
  52. if(b==0)
  53. {
  54. return a;
  55. }
  56. return gcd(b,a%b);
  57. }
  58.  
  59. static int lcm(int a, int b)
  60. {
  61. return (a / gcd(a, b)) * b;
  62. }
  63.  
  64.  
  65. static int abs(int a)
  66. {
  67. if(a<0)
  68. return -1*a;
  69. return a;
  70. }
  71.  
  72. static class FastReader
  73. {
  74.  
  75. public FastReader()
  76. {
  77. br = new BufferedReader(new
  78. }
  79.  
  80. String next()
  81. {
  82. while (st == null || !st.hasMoreElements())
  83. {
  84. try
  85. {
  86. st = new StringTokenizer(br.readLine());
  87. }
  88. catch (IOException e)
  89. {
  90. e.printStackTrace();
  91. }
  92. }
  93. return st.nextToken();
  94. }
  95. int nextInt()
  96. {
  97. return Integer.parseInt(next());
  98. }
  99.  
  100. long nextLong()
  101. {
  102. return Long.parseLong(next());
  103. }
  104.  
  105. double nextDouble()
  106. {
  107. return Double.parseDouble(next());
  108. }
  109. String nextLine()
  110. {
  111. String str = "";
  112. try
  113. {
  114. str = br.readLine();
  115. }
  116. catch (IOException e)
  117. {
  118. e.printStackTrace();
  119. }
  120. return str;
  121. }
  122.  
  123. int [] readintarray(int n) {
  124. int res [] = new int [n];
  125. for(int i = 0; i<n; i++)res[i] = nextInt();
  126. return res;
  127. }
  128. long [] readlongarray(int n) {
  129. long res [] = new long [n];
  130. for(int i = 0; i<n; i++)res[i] = nextLong();
  131. return res;
  132. }
  133. }
  134.  
  135. }
  136.  
  137.  
  138.  
  139.  
  140.  
Success #stdin #stdout 0.08s 54760KB
stdin
5
stdout
Hello
Hello
Hello
Hello
Hello