1//Declare dependencies
2use std::io::stdin;
3
4fn main() {
5 //Declare a mutable input string
6 let mut input_string = String::new();
7 stdin().read_line(&mut input_string)
8 .ok()
9 .expect("Failed to read line");
10}
1//Declare dependencies
2use std::io::stdin;
3
4fn main() {
5 //Declare a mutable input string
6 let mut input_string = String::new();
7 stdin.read_line(&mut input_string)
8 .ok()
9 .expect("Failed to read line");
10}