0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-15 11:38:48 +00:00
OI-codes/Hydro/system_test/8/data/checker.cc

12 lines
303 B
C++

#include "testlib.h"
int main(int argc, char* argv[]) {
setName("compares two signed integers");
registerTestlibCmd(argc, argv);
int ja = ans.readInt();
int pa = ouf.readInt();
if (ja != pa)
quitf(_wa, "expected %d, found %d", ja, pa);
quitf(_ok, "answer is %d", ja);
}