diff --git a/storage/zeta/rs/completed/33178.rs b/storage/zeta/rs/completed/33178.rs new file mode 100644 index 0000000..ea190e7 --- /dev/null +++ b/storage/zeta/rs/completed/33178.rs @@ -0,0 +1,12 @@ +use std::io::stdin; + +fn main() { + let n = stdin() + .lines() + .next() + .unwrap() + .unwrap() + .parse::() + .unwrap(); + println!("{}", n / 10); +}