⌨️

[AtCoder]ABC-239|B - Integer Division

2023/06/06に公開

設問ページ

提出結果

import math

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

def main():
    x = getInt()

    print(x // 10)

if __name__ == "__main__":
    main()

Discussion