⌨️

[AtCoder]ABC-411|A - Required Length

に公開

設問ページ

提出結果

def getString():
    return input()


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


def main():
    P = getString()
    L = getInt()

    print("Yes" if L <= len(P) else "No")


if __name__ == "__main__":
    main()

Discussion