Online Java Compiler By
JavaTpoint.com
public class MultiplyExactExample1 { public static void main(String[] args) { int a = 739; int b = 5; // Input two values, Output multiplication of a and b System.out.println(Math.multiplyExact(a, b)); } }
Output