`
200830740306
  • 浏览: 106238 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

poj2389

阅读更多
package easy;


import java.io.BufferedInputStream;
import java.math.BigInteger;
import java.util.Scanner;

/**
 *
 * poj2389
 * @author NC
 */
public class Poj2389 {

    public static void main(String[] args) {
        Scanner scan = new Scanner(new BufferedInputStream(System.in));
        if (scan.hasNext()) {
            BigInteger a = scan.nextBigInteger();
            BigInteger b = scan.nextBigInteger();
            System.out.println(a.multiply(b));
        }
    }
}


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics