fn main() -> Result<(), std::io::Error> { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let input_str = s.trim().to_string(); let top_is_one = input_str.chars().nth(0).unwrap() == '1'; let mut ans = 0; for i in input_str.chars().skip(1) { if i == '3' { ans += 1; } else { ans = -1; break; } } if top_is_one && ans != 0 { println!("{}", ans); } else { println!("{}", -1); } Ok(()) }