#P1. sleepIn

sleepIn

Background

Description

The parameter weekday is true if it is a weekday, and the parameter vacation is true if we are on vacation. We sleep in if it is not a weekday or we're on vacation. Return true if we sleep in.

Format

Input

Output

Samples

false false
true
true false
false
false true
true

Limitation

1s, 1024KiB for each test case.