{"raw_statement":[{"iden":"problem statement","content":"Takahashi and Aoki are playing a game.\n\n*   First, Takahashi chooses an integer between $A$ and $B$ (inclusive) and tells it to Aoki.\n*   Next, Aoki chooses an integer between $C$ and $D$ (inclusive).\n*   If the sum of these two integers is a prime, then Aoki wins; otherwise, Takahashi wins.\n\nWhen the two players play optimally, which player will win?"},{"iden":"constraints","content":"*   $1 \\leq A \\leq B \\leq 100$\n*   $1 \\leq C \\leq D \\leq 100$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$ $C$ $D$"},{"iden":"sample input 1","content":"2 3 3 4"},{"iden":"sample output 1","content":"Aoki\n\nFor example, if Takahashi chooses $2$, Aoki can choose $3$ to make the sum $5$, which is a prime."},{"iden":"sample input 2","content":"1 100 50 60"},{"iden":"sample output 2","content":"Takahashi\n\nIf they play optimally, Takahashi always wins."},{"iden":"sample input 3","content":"3 14 1 5"},{"iden":"sample output 3","content":"Aoki"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}