import java.util.Scanner;
public class telBetweenTime {
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
System.out.println(">>>>>>>>>>>>> Welcome to Tel <<<<<<<<<<<<");
System.out.print("Please enter the FirstTime: ");
double firstTime = scanner.nextDouble();
System.out.print("Please enter the LastTime: ");
double lastTime = scanner.nextDouble();
TelBoard tel = new TelBoard();
Double priceTotals = tel.TelBoards(firstTime, lastTime);
if(priceTotals == 0.0){
System.out.print("Time is not parttime !!");
}else{
System.out.print("Time: "+firstTime+"-"+lastTime+" TotalPrice: "+priceTotals+ " Baht");
}
}
}