All quizzes
RustIntroPredict the output

What does this program print?

fn main() {
    let a = 7;
    let b = 2;
    println!("{}", a / b);
}