15 lines
153 B
Rust
15 lines
153 B
Rust
use proconio::input;
|
|
|
|
fn solve(tc: u32){
|
|
todo!();
|
|
}
|
|
|
|
fn main() {
|
|
input!{
|
|
t: u32,
|
|
};
|
|
|
|
for tc in 1..=t {
|
|
solve(tc);
|
|
}
|
|
} |