⌨️

[AtCoder]ABC-053|A - ABC/ARC

2022/12/22に公開

設問ページ

提出結果

def getInt():
    return int(input())


def main():
    x = getInt()
    print('ABC' if x < 1200 else 'ARC')


if __name__ == "__main__":
    main()

Discussion