⌨️[AtCoder]ABC-209|A - Counting2023/04/22に公開・約200字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-209 A - Counting 提出結果 def getIntMap(): return map(int, input().split()) def main(): a, b = getIntMap() print(b - a + 1 if b >= a else 0) if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion