大数运算(python2)

偶然又遇到了一道大数题,据说python大数运算好屌,试了一发,果然方便~

1
a = int( raw_input() ); //注意这里是按行读入的,即每行只读一个数 2 b = int( raw_input() ); 3 print a+b; 4 print a*b; 5 print a/b; 6 print a%b;
原文地址:https://www.cnblogs.com/geloutingyu/p/6156438.html