// 2024 IUSB Programming Competition // Round 1 Problem 4 // Class Rank // Solution by Liguo Yu import java.util.Scanner; public class round1_p4 { public static void main(String[] args) { Scanner input = new Scanner(System.in); int n = input.nextInt(); char[] names = new char[n]; int[] scores = new int[n]; for(int i=0; i= 0; i--) { System.out.print(names[i] + " "); } } }