import java.time.*;
public class prog {
public static void main(String[] args){
LocalTime present = LocalTime.now();
System.out.println("현재 시간은 " +
present.getHour() + "시 " + present.getMinute() + "분입니다.");
}
}