banner
NEWS LETTER

Scroll down
1
2
3
4
5
6
7
8
import sys
from decimal import setcontext, Context, Decimal

setcontext(Context(prec=2000000, Emax=2000000, Emin=0))
a, b = map(Decimal, sys.stdin.readlines())

print(a * b)

我很可爱,请给我钱

其他文章
cover
Python筛法
  • 25/06/13
  • 20:53
  • 49
  • 1