day=str(input(" What day of the week is it? "))
holi=(input("Is it a holiday? "))

week = ("mon","tue","wend","thur","fri")
end = ("sat","sun")
if day== week :
    if holi == "No" :
        print("Get to work")
         
     if holi == "Yes":
         print("Go have a rest")


if day== end :
     print("Go have a rest")