Hi!
I am a newbie and need some help to know that in the followin' program where i am going wrong:-
public class userinput
{
public static void main(String[] args)
{
System.out.println("Enter the value of A: ");
int a=Integer.parseInt(args[1]);
System.out.println("Enter the value of B: ");
int b=Integer.parseInt(args[2]);
int c=a+b;
System.out.println("The sum is: "+c);
}
}

