Computer Science, asked by karanjeet20045, 11 months ago

write a program using blue j environment to calculate and print the sum of two numbers​

Attachments:

Answers

Answered by MaharnabK7
0

public class sum

{

public static void main(String args[])

{

int a=1;

int b=2;

System.out.println(a+b);

}

}

Similar questions