package com.njupt.acm;

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

public class UVA_10106 {

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



相关文章:

  • 2022-12-23
  • 2021-05-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2023-01-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
相关资源
相似解决方案