import java.util.Scanner;
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
BigInteger a,b;
while(input.hasNext())
{
a=input.nextBigInteger();
b=input.nextBigInteger();
System.out.println(a.multiply(b));
}
}
}
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
BigInteger a,b;
while(input.hasNext())
{
a=input.nextBigInteger();
b=input.nextBigInteger();
System.out.println(a.multiply(b));
}
}
}
0 comments:
Post a Comment