summaryrefslogtreecommitdiff
path: root/template/main.rs
blob: 397d51f19664d76d523716abbce3a0643a81d2b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::io;

fn main() {
    let lines = io::stdin()
        .lines()
        .flatten()
        .map(|line| line)
        .collect::<Vec<_>>();

    dbg!(lines);

    let silver: u64 = 0;
    let gold: u64 = 0;
    println!("silver: {silver}");
    println!("gold: {gold}");
}