test/cpv/library-checker-sample/aplusb.fastio.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/aplusb | ||
| 2 | #include "../../../src/io/fastin/lib.hpp" | ||
| 3 | #include "../../../src/io/fastout/lib.hpp" | ||
| 4 | |||
| 5 | using namespace tifa_libs; | ||
| 6 | 12 | int main() { | |
| 7 | u64 s, t; | ||
| 8 | 12 | fin_uint >> s >> t; | |
| 9 | 12 | fout << s + t; | |
| 10 | 12 | return 0; | |
| 11 | } | ||
| 12 |