12 lines
182 B
Rust
12 lines
182 B
Rust
use proconio::input;
|
|
|
|
fn main() {
|
|
input!{
|
|
mut abc: [u8; 3],
|
|
};
|
|
abc.sort();
|
|
let ans = abc == vec![5, 5, 7];
|
|
|
|
println!("{}", if ans {"YES"} else {"NO"});
|
|
}
|