Computer Science, asked by suraj200688, 8 months ago

how to write a program in java to find the sum of two numbers in blue j​




pls answer i will make them brainliest
....

Answers

Answered by NiharikaVeer
3

Explanation:

public class sum

{

public static void main (int a,int b)

{

int sum=0;

sum=a+b;

System.out.println(sum);

}

}

Similar questions