Computer Science, asked by AkshayPolo136, 10 months ago

Find the sum of two variables write a program

Answers

Answered by vicky446312
0

Explanation:

dont know answer of questions

Answered by mohakdave6
0

Answer:

In Java

public class Sum

{

 public static void main()

{

int a = 2;

int b = 3;

int c = a+b;

System.out.println("Sum: "+ c);

}

}

Similar questions