import static java.lang.Math.*; class P03_Math_import { public static void main(String[] args) { int n1, n2, n; n1 = 100; n2 = 200; n = max(n1,n2); System.out.println(n); //shows 200 System.out.println(PI); //shows 3.141592653589793 } }