poj2389(java大整数相乘)

来源:互联网 发布:js 新建 jsonarray 编辑:程序博客网 时间:2024/05/16 12:59
Bull Math
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions:15480 Accepted: 7941

Description

Bulls are so much better at math than the cows. They can multiply huge integers together and get perfectly precise answers ... or so they say. Farmer John wonders if their answers are correct. Help him check the bulls' answers. Read in two positive integers (no more than 40 digits each) and compute their product. Output it as a normal number (with no extra leading zeros). 

FJ asks that you do this yourself; don't use a special library function for the multiplication.

Input

* Lines 1..2: Each line contains a single decimal number.

Output

* Line 1: The exact product of the two input lines

Sample Input

111111111111111111111111

Sample Output

12345679011110987654321

Source

USACO 2004 November
import java.math.BigInteger;import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner cin = new Scanner(System.in);BigInteger a = cin.nextBigInteger();BigInteger b = cin.nextBigInteger();a = a.multiply(b);System.out.println(a);}}


原创粉丝点击