first commit

This commit is contained in:
rjb
2026-01-26 15:02:59 +08:00
parent 755ec7fbbb
commit a02773e383
348 changed files with 32738 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.company;
public class Main {
static boolean b;
static String S;
static Long L;
public static void main(String[] args) {
L=0L;
// write your code here
System.out.println(b);
System.out.println(S);
System.out.println(L);
}
}