码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1402: A * B Problem Plus

时间:2017-08-06 17:05:36      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:more   ext   ati   ack   next   oid   imp   while   php   

A * B Problem Plus


///@author Sycamore, ZJNU;
///@date 8/4/2017
import java.math.BigInteger;
import java.util.Scanner;
public class Main
{
	public static void main(String[] args)
	{
		Scanner cin = new Scanner(System.in);
		while (cin.hasNext())
		{
			BigInteger x = cin.nextBigInteger(), y = cin.nextBigInteger();
			System.out.println(x.multiply(y));
		}
	}

 

HDU 1402: A * B Problem Plus

标签:more   ext   ati   ack   next   oid   imp   while   php   

原文地址:http://www.cnblogs.com/zjnu/p/7295036.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!