输入3个正整数a、b和c,如果c在区间[a, b]内输出”in”,否则输出”out”。 注意:方括号表示的是闭区间,[a, b]是包括a和b的。
一行3个正整数:a、b和c,范围在[1, 1000000],a ≤ b。
in或out。
4 8 5
in
5 7 9
out