Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

import java.io.

*;
import java.lang.*;
import java.util.*;

public class Main {


//-------template-----------
static class FastReader {
BufferedReader br;
StringTokenizer st;

public FastReader()
{
br = new BufferedReader(
new InputStreamReader(System.in));
}

String next()
{
while (st == null || !st.hasMoreElements()) {
try {
st = new StringTokenizer(br.readLine());
}
catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}

int nextInt() { return Integer.parseInt(next()); }

long nextLong() { return Long.parseLong(next()); }

double nextDouble()
{
return Double.parseDouble(next());
}

String nextLine()
{
String str = "";
try {
if(st.hasMoreTokens()){
str = st.nextToken("\n");
}
else{
str = br.readLine();
}
}
catch (IOException e) {
e.printStackTrace();
}
return str;
}
}
public static FastReader ip=new FastReader();
//---------------end--------------
public static void solve(){
System.out.println("ddsfvd");
}

public static void main (String[] args) {


int t=ip.nextInt();
while(t--!=0)solve();
}
}

You might also like