Skip to content

Commit 3b3faf7

Browse files
committed
feat: Add aplusb test for basic addition functionality and remove many_aplusb_debug test
1 parent fcf7ad3 commit 3b3faf7

File tree

2 files changed

+13
-17
lines changed

2 files changed

+13
-17
lines changed

test/aplusb.test.cpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#define PROBLEM "https://judge.yosupo.jp/problem/aplusb"
2+
3+
#include "../weilycoder/fast-io.hpp"
4+
using namespace weilycoder;
5+
6+
static FastIOStd<true> io;
7+
8+
int main() {
9+
uint64_t a = io.read_u64();
10+
uint64_t b = io.read_u64();
11+
io.write_u64_line(a + b);
12+
return 0;
13+
}

test/many_aplusb_debug.test.cpp

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)