You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
use std::io;
|
|
use std::io::Read;
|
|
|
|
extern crate advent_of_code_2016;
|
|
use advent_of_code_2016::*;
|
|
|
|
fn main() {
|
|
let mut input = String::new();
|
|
io::stdin().read_to_string(&mut input).ok();
|
|
|
|
println!("{}", day_02::solve(&input));
|
|
}
|