题解 | 牛牛的第二个整数
牛牛的第二个整数
https://www.nowcoder.com/practice/6f3e10bcf63240a6b7bde95a22cb4cc4
use std::io::{self, *};
fn main() {
let stdin = io::stdin();
for line in stdin.lock().lines() {
let ll = line.unwrap();
let numbers: Vec<&str> = ll.split(" ").collect();
print!("{}\n", numbers[1]);
}
}
