We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f6b3d commit 3b0f2dcCopy full SHA for 3b0f2dc
1 file changed
Addition.java
@@ -0,0 +1,19 @@
1
+#https://www.facebook.com/mayankgbrc/post/2726954114288546
2
+#subscribe by code house
3
+import java.util.*;
4
+
5
+public class addition
6
+{
7
+ public static void main(String[] args)
8
+ {
9
+ //write your code here
10
11
+ scanner digit=new scanner(system.in);
12
+ int n,m,c;
13
+ system.out.println("enter the two number");
14
+ n=digit.nextint();
15
+ m=digit.nextint();
16
+ c=m+n;
17
+ system.out.println("the sum of the number is "+c);
18
+ }
19
+}
0 commit comments