Java CP Template
HemantPatel
java
4 years ago
403 B
6
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
}
}
}
Editor is loading...