quicktest 1.0.10

Quick Test CLI: A Cross-Platform for Automated Testing in Competitive Programming
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(warnings, unused)]
use proconio::input;
use std::cmp::{min, max};

fn main() {
    
    input! {
        n: i64
    }

    println!("{} {}", 2, n/2);
}