⌨️

[AtCoder]ABC-208|A - Rolling Dice

2023/04/21に公開

設問ページ

提出結果

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


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

    print('Yes' if a <= b <= a * 6 else 'No')


if __name__ == "__main__":
    main()

Discussion