if is_shout and is_question:
    return "Calm down, I know what I'm doing!"
if is_shout:
    return 'Whoa, chill out!'
if is_question:
    return 'Sure.'
return 'Whatever.'
