⌨️

[AtCoder]ABC-190|A - Very Very Primitive Game

2023/04/03に公開

設問ページ

提出結果

def getIntMap():
    return map(int, input().split())


def main():
    a, b, c = getIntMap()

    d = b - a
    print('Aoki' if d > 0 else 'Takahashi' if d < 0 else 'Aoki' if c == 0 else 'Takahashi')


if __name__ == "__main__":
    main()

Discussion