P1-P5: init

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-04-10 05:54:43 +05:30
commit 9006831163
7 changed files with 223 additions and 0 deletions

8
P1.java Normal file
View File

@@ -0,0 +1,8 @@
class P1 {
public static void main(String[] _args) {
int a = 44;
int b = 56;
System.out.println(a + " + " + b + " = " + (a + b));
}
}