This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class Array{ | |
| public static void main (String [] args){ | |
| Scanner input = new Scanner (System.in); | |
| int numbers, numbers2; | |
| numbers = input.nextInt(); | |
| int[] array = new int[numbers]; | |
| System.out.println("Now input each number you want."); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| import java.util.Arrays; | |
| public class Arrayreverse { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int positions = input.nextInt(); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| import java.io.*; | |
| public class Fibonacci { | |
| public static void main (String [] args) { | |
| long f = 0; | |
| long n = 1; | |
| Scanner input = new Scanner(System.in); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class ArmyStrength { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int godzillaMayor = 0, mechaMayor = 0; | |
| String[] winners = new String[input.nextInt()]; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| import java.util.Arrays; | |
| import java.io.*; | |
| public class aplusb { | |
| public static void main (String [] args) throws IOException { | |
| InputStreamReader inStream = new InputStreamReader(System.in); | |
| BufferedReader systemIn = new BufferedReader(inStream); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import static java.lang.Integer.*; | |
| import static java.lang.Math.*; | |
| import java.util.*; | |
| import java.io.*; | |
| public class godzillarmy { | |
| public static void main(String[] args) throws Throwable{ | |
| BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); | |
| for(int c = 0, C = parseInt(in.readLine().trim()); c++ < C;){ | |
| in.readLine();in.readLine(); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| import java.lang.*; | |
| public class powersof { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int x = 2; | |
| int n = input.nextInt(); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class GeneralElection { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int cases = input.nextInt(); | |
| for (int i = 1; i <= cases; i++) { | |
| int output = 0, winner = 0; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | mport java.util.Scanner; | |
| public class TraversingGrid { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| String[] output = new String[input.nextInt()]; | |
| for (int i = 0; i < output.length; i++) { | |
| int n = input.nextInt(); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| class Sum { | |
| public static void main(String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int n, x, absn, sum; | |
| x = 0; |