my solutions to advent of code
aoc advent-of-code
1fn main() { 2 let input = include_str!("../../input.txt").trim(); 3 4 println!("{}", &input); 5}