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 unlucky{ | |
| public static void main(String [] args) | |
| { | |
| Scanner input = new Scanner (System.in); | |
| int params = input.nextInt(); | |
| int[] arr = new int[params]; | |
| for(int i = 0 ; i < arr.length ; i++){ | 
  
    
      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 largest1{ | |
| public static void main (String[] args) | |
| { | |
| Scanner input = new Scanner (System.in); | |
| int params = input.nextInt(); | |
| int params1 = 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 LeftShift { | |
| public static void main(String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int a = input.nextInt(); | |
| int [] arr = new int [a]; | 
  
    
      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 table { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int params = 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 uppertolower { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| char start = input.next().charAt(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
    
  
  
    
  | import java.util.Scanner; | |
| public class numtomonth { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int number = 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 asterisks { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int params = input.nextInt(); | |
| square(params); | |
| } | |
| public static void square(int params){ | 
  
    
      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 circlearea { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int radius = 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 largest { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int positions = input.nextInt(); | |
| int[] myArray = new int[positions]; | 
  
    
      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 multipletrue { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int a = input.nextInt(); | |
| int b = input.nextInt(); |