fork download
  1. import java.util.Scanner;
  2.  
  3. class Ideone
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. Scanner scanner = new Scanner(System.in);
  8. int a = scanner.nextInt();
  9. int b = scanner.nextInt();
  10. System.out.println (a * b);
  11. }
  12. }
Success #stdin #stdout 0.06s 2184192KB
stdin
5555
4444
stdout
24686420