For this task on Atcoder, from decimal import Decimal as dec a,b = map(dec,input().split()) print(int(a*b)). gives AC, but a,b = map(float,input().split()) ...
確定! 回上一頁