⌨️

[AtCoder]ABC-304|B - Subscribers

2023/09/13に公開

設問ページ

提出結果

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


def main():
    n = getInt()
    s = str(n)

    print(s[0:3] + '0' * (len(s) - 3))


if __name__ == "__main__":
    main()

Discussion