first commit

This commit is contained in:
2022-12-07 10:06:14 +01:00
commit 7acee63be6
40 changed files with 433 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,13 @@
import java.util.*;
class AdditionMitMatrNr{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
final int martikel = 12345;
int a = sc.nextInt();
int b = sc.nextInt();
int out= martikel + a + b;
System.out.println(out);
}
}