Files
javalab/P1.java
Amneesh Singh 9006831163 P1-P5: init
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-04-10 05:54:43 +05:30

8 lines
156 B
Java

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