⌨️[AtCoder]ABC-233|A - 10yen Stamp2023/05/26に公開・約300字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-233 A - 10yen Stamp 提出結果 import math def getIntMap(): return map(int, input().split()) def main(): x, y = getIntMap() print(0 if y <= x else math.ceil((y - x) / 10)) if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion