use std::io::stdin; fn main() { let n = stdin() .lines() .next() .unwrap() .unwrap() .parse::() .unwrap(); println!("{}", n / 10); }