⌨️

[AtCoder]ABC-169|A - Multiplication 1

2023/03/16に公開

設問ページ

提出結果

def getIntMap():
    return map(int, input().split())


def main():
    a, b = getIntMap()

    print(a * b)


if __name__ == "__main__":
    main()

Discussion