import java.io.*;
class Ex31_test_getSeconds
{
public static void main(String[] args) throws IOException
{
// 숫자 이외의 문자에 대한 예외처리 없음.
BufferedReader reader =
new BufferedReader(new InputStreamReader(System.in));
System.out.println("미입력시 0이나 Enter입력");
System.out.print("시간을 입력 : ");
String hourS = reader.readLine();
int hour = (hourS.equals("0")||hourS.equals("")) ?
0 : Integer.parseInt(hourS);
System.out.print("분을 입력 : ");
String minuteS = reader.readLine();
int minute = (minuteS.equals("0")||minuteS.equals("")) ?
0 : Integer.parseInt(minuteS);
System.out.print("초를 입력 : ");
String secondS = reader.readLine();
int second = (secondS.equals("0")||secondS.equals("")) ?
0 : Integer.parseInt(secondS);
if(hour==0) { // 시간 입력값 없으면
if(minute==0) { // 시간, 분 입력값 없으면
getSeconds(second);
}else {
getSeconds(minute, second);
}
}else { // 다 입력값이 있으면
getSeconds(hour,minute,second);
}
}//end main
public static void getSeconds(int hour, int minute, int second) {
System.out.println(hour*360+minute*60+second+"초");
}
public static void getSeconds(int minute, int second) {
System.out.println(minute*60+second+"초");
}
public static void getSeconds(int second) {
System.out.println(second+"초");
}
}