words per minute
7
PanDobrman
00:00
Speed
class Addition
{
public static void main(String[] args)
{
int i=Integer.parseInt(args[0]);
int j=Integer.parseInt(args[1]);
System.out.println("This is a program to Add two numbers.");
System.out.println(i+j);
}
}