⌨️[AtCoder]ABC-094|A - Cats and Dogs2023/01/16に公開・約300字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-094 A - Cats and Dogs 提出結果 def getIntMap(): return map(int, input().split()) def main(): a, b, x = getIntMap() print('YES' if x >= a and x - a <= b else 'NO') if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion