⌨️

[AtCoder]ABC-358|A - Welcome to AtCoder Land

2024/06/25に公開

設問ページ

提出結果

def getStringMap():
    return input().split()


def main():
    S, T = getStringMap()

    print('Yes' if S == 'AtCoder' and T == 'Land' else 'No')


if __name__ == "__main__":
    main()

Discussion