⌨️

[AtCoder]ABC-158|A - Station and Bus

2023/03/06に公開

設問ページ

提出結果

def getString():
    return input()


def main():
    l = list(getString())

    print('No' if len(set(l)) == 1 else 'Yes')


if __name__ == "__main__":
    main()

Discussion