import java.util.*;
import java.lang.*;
import java.io.*;
// The main method must be in a class named "Main".
class Main {
public static int addnumbers(int num1,int num2){
int sum= num1+num2;
return sum;
}
public static void main(String[] args) {
System.out.println("The sqrt of num 9:"+Math.pow(5,8));
int total=addnumbers(9,11);
System.out.println("The total sum of two numbers:"+total);
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: