public class Main {
public static void main(String[] args) {
System.out.printf("%3$c %2$c %1$c", 'a', 'b', 'c');
}