Guest User

Untitled

a guest
May 12th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 0.16 KB | None | 0 0
  1. fn main() {
  2.     let mut buffer = String::with_capacity(65 * 500_000);
  3.  
  4.     let stdin = std::io::stdin();
  5.     let _ = stdin.lock().read_to_string(&mut buffer);
  6.  
  7. ...
Add Comment
Please, Sign In to add comment