public class solve{
public static void main (String []args){
A cs = new A();
int first=34;
int second=4;
System.out.println("Sum:" + cs.add(first,second));
System.out.println("Difference:" + cs.subtract(first,second));
}
}
i got this code, unfortunately it refuses to run.. please help..
Something is wrong with "A", dnt know what it is...:(