Sum of two no by input value from keyboard
import java.util.Scanner;
class Addition
{
public static void main(String[] args)
{
int a, b, c=0;
Scanner s=new Scanner(System.in); System.out.println("Enter any two no: ");
a=s.nextInt();
b=s.nextInt();
c=a+b;
System.out.println("Sum: "+c);
}
}
0 comments:
Post a Comment