import java.io.*; import java.util.*; class google{ int value; boolean used; public google newGoogle(){ this.value = 0; this.used = false; return this; } } public class Solution { public static void main(String[] args) { /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */ Scanner scan = new Scanner(System.in); int t = scan.nextInt(); for(int i=0;i