mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-14 16:58:48 +00:00
23 lines
500 B (Stored with Git LFS)
C++
23 lines
500 B (Stored with Git LFS)
C++
#include <iostream>
|
|
|
|
#include "testlib.h"
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
setName("Interactor A+B");
|
|
registerInteraction(argc, argv);
|
|
|
|
// reads number of queries from test (input) file
|
|
int a = inf.readInt();
|
|
int b = inf.readInt();
|
|
// writes query to the solution, endl makes flush
|
|
cout << a << " " << b << endl;
|
|
int ans;
|
|
cin >> ans;
|
|
if (a + b == ans)
|
|
quitf(_ok, "!");
|
|
else
|
|
quitf(_wa, "?");
|
|
}
|