2 Bontinue

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import java.util.

Scanner ;
public class Main
{
public static void main (String args [ ))
{
int a, b;
Scanner input= new Scanner (System .in);
System. out. println("Enter any t o,o number : ");
a= input.nextlnt();
b = input.nextlnt();

Sum num = new Su11() ;


System.out.println("The sum of t wo number is " + num. computeAddition(a,
b)) ;
}
}
class sum
{
int computeAddition(int a,int b)
{
return(a+b);
}

You might also like