This library is intended to be used for competitive programming. It will be extended further and further with solutions to math, graph, geometry, ... problems in competitive programming. It also contains useful helpers for cp e.g. an io helper.
To read an integer and a float from each line in a file input.txt
you can write the following code:
```rust
use cp_rs::io::*;
fn main() { let mut io = Io::fromfile("input.txt"); for mut line in io.lineio() { let (a, b): (u32, f32) = line.tuple(); } } ```