Java CP Template

 avatar
HemantPatel
java
3 years ago
403 B
2
Indexable
import java.util.*;
import java.io.*;

public class Main {
    public static Scanner sc = new Scanner(System.in);
  	public static int i(){return sc.nextInt();}
  	public static long l(){return sc.nextLong();}
  	public static String s(){return sc.nextLine();}
  
	public static void main(String[] args) {
        int t = i();

        while(t-- > 0){
        // write code here
				



        }
	}
}