Solving Problems ABC 269 (A-G)
A: Basic Arithmetic and Output
Given integers a, b, c, d, compute (a + b) * (c - d) and output the result followed by the string "Takahashi".
int a = input(), b = input(), c = input(), d = input();
cout << (a + b) * (c - d) << endl;
cout << "Takahashi" << endl;
Time complexity: O(1)
B: Finding Corne ...
Posted on Wed, 10 Jun 2026 16:36:46 +0000 by Elephant