Tracy is baking some bread! She would like to bake the bread based on the temperature it is outside. There are temperature ranges Tracy would like to bake bread in. If the temperature is from to degrees, Tracy would like to bake pumpernickel
. If the temperature is from to degrees, Tracy would like to bake sourdough
. If the temperature is from to degrees, Tracy would like to bake cornbread
. It's guaranteed that the temperature will fall into exactly one of the ranges.
Input Specification
The first line will contain two space-separated integers, and , the temperature range in which Tracy wants to bake pumpernickel
in.
The next line will contain two space-separated integers, and , the temperature range in which Tracy wants to bake sourdough
in.
The next line will contain two space-separated integers, and , the temperature range in which Tracy wants to bake cornbread
in.
The last line will contain a single integer, , the temperature outside.
Output Specification
Output the type of bread Tracy wants to bake, pumpernickel
, sourdough
, or cornbread
.
Sample Input
1 2
5 99
3 4
3
Sample Output
cornbread
Comments