import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// Create a LocalDateTime object
LocalDateTime date = LocalDateTime.of(2025, 7, 18, 15, 31, 24);
// Format the time as HH:mm:ss
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss");
String x = date.format(formatter);
System.out.println(x);
}
}
/*
run:
15:31:24
*/