/*********************************************
 * Parking Sign
 * Author: Harry Smith
 *
 * Description:
 * Help a Philadelphian figure out if they can park here,
 * and for how long!
 *
 * Execution: java ParkingSign
 *
 * Program Arguments: time / hour of the day (0 - 23)
 *
 *********************************************/

public class ParkingSign {
    public static void main(String[] args) {

        int hour = 6;

        if (hour >= 0 && hour < 8) {
            System.out.println("You can park here until 10AM!");
        } else if (hour >= 8 && hour < 20) {
            System.out.println("You can park here for two hours.");
        } else {
            System.out.println("You can park here overnight until 10 AM tomorrow.");
        }
    }
}
