changed filenames

This commit is contained in:
2026-04-04 19:51:10 -05:00
parent caa45609f6
commit 680970378f
2 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
// General imports
import java.util.*;
import java.io.*;
import java.math.*;
public class ConsoleIOSimple {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// Write code here
int a = sc.nextInt();
System.out.println(a);
sc.close();
}
}