#[allow(non_snake_case)]
pub fn YesNo(judge: bool) -> &'static str {
if judge {
"Yes"
} else {
"No"
}
}
#[allow(non_snake_case)]
pub fn YESNO(judge: bool) -> &'static str {
if judge {
"YES"
} else {
"NO"
}
}
pub fn tf<'a>(value: bool, t: &'a str, f: &'a str) -> &'a str {
if value {
t
} else {
f
}
}