diff --git a/Program.java b/Program.java new file mode 100644 index 0000000..a350a66 --- /dev/null +++ b/Program.java @@ -0,0 +1,12 @@ +import java.util.*; +class Program { + public static void main(String[] args){ + Scanner sc=new Scanner(System.in); + int a,b,c=0; + a=sc.nextInt(); + b=sc.nextInt(); + c=a+b; + System.out.println("The sum is " + c); + } +} +