class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
String[] names = { "Elena", "Thomas", "Hamilton", "Suzie",
"Phil", "Matt", "Alex", "Emma", "John",
"James", "Jane", "Emily", "Daniel", "Neda",
"Aaron", "Kate" };
int[] times = { 341, 273, 278, 329, 445,
402, 388, 275, 243, 334,
412, 393, 299, 343, 317, 265 };
int max = Integer.MIN_VALUE;
short index = Short.MIN_VALUE;
for (short i = 0; i < times.length; i++) {
if (times[i] > max) {
max = times[i];
index = i;
}
}
System.out.printf(">> %s -- %d", names[index], times[index]);
}
}