diff --git a/base.rs b/base.rs new file mode 100644 index 0000000..b206056 --- /dev/null +++ b/base.rs @@ -0,0 +1,15 @@ +use proconio::input; + +fn solve(tc: u32){ + +} + +fn main() { + input!{ + t: u32, + }; + + for tc in 1..=t { + solve(tc); + } +} \ No newline at end of file