mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-24 12:28:49 +00:00
18 lines
355 B
C++
18 lines
355 B
C++
|
#include <iostream>
|
||
|
|
||
|
using std::cin;
|
||
|
using std::cout;
|
||
|
const char endl = '\n';
|
||
|
|
||
|
int a, b, c, d;
|
||
|
|
||
|
int main() {
|
||
|
std::ios::sync_with_stdio(false);
|
||
|
cin >> a >> b >> c >> d;
|
||
|
cout << (a == c ? b <= d ? "Takahashi" : "Aoki" : a < c ? "Takahashi"
|
||
|
: "Aoki")
|
||
|
<< endl;
|
||
|
|
||
|
return 0;
|
||
|
}
|