diff --git a/GeeksForGeeks/June/16-6-24/GFG.java b/GeeksForGeeks/June/16-6-24/GFG.java new file mode 100644 index 0000000..28d1d2f --- /dev/null +++ b/GeeksForGeeks/June/16-6-24/GFG.java @@ -0,0 +1,79 @@ +//{ Driver Code Starts +import java.io.*; +import java.util.*; +import java.util.ArrayList; + +class IntArray { + public static int[] input(BufferedReader br, int n) throws IOException { + String[] s = br.readLine().trim().split(" "); + int[] a = new int[n]; + for (int i = 0; i < n; i++) a[i] = Integer.parseInt(s[i]); + + return a; + } + + public static void print(int[] a) { + for (int e : a) System.out.print(e + " "); + System.out.println(); + } + + public static void print(ArrayList a) { + for (int e : a) System.out.print(e + " "); + System.out.println(); + } +} + +class GFG { + public static void main(String[] args) throws IOException { + BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + int t; + t = Integer.parseInt(br.readLine()); + while (t-- > 0) { + + int n; + n = Integer.parseInt(br.readLine()); + + Solution obj = new Solution(); + ArrayList res = obj.getPrimes(n); + + IntArray.print(res); + } + } +} + +// } Driver Code Ends + + +class Solution +{ + public static ArrayList getPrimes(int n) + { + // code here + ArrayList list = new ArrayList<>(); + list.add(-1); + list.add(-1); + for (int i=2; i