public class DriverThree {
	public static void main(String[] args) {
		CashierThree firstCashier = new CashierThree();
		
		firstCashier.ringUpCustomer();
		System.exit(0);
	}
}