Skip to content

Commit 9bb905f

Browse files
committed
Stage hyperskill#1: The sum of two integers
1 parent 9f657dd commit 9bb905f

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/theSum.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import java.util.Scanner;
2+
class theSum{
3+
public static void main(String[] args) {
4+
Scanner in = new Scanner(System.in);
5+
int a = in.nextInt();
6+
int b = in.nextInt();
7+
System.out.println(a+b);
8+
}
9+
}

0 commit comments

Comments
 (0)