import java.io.*;
import java.util.*;
class MyClass
{
public static void main(String s[])
{
int a,b;
a = Integer.parseInt(s[0]);
b = Integer.parseInt(s[1]);
System.out.print("Hello World \n");
}
}
I'm getting the following error " Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 at MyClass.main(Myclass.java:8) "
Someone please help me out.....