battle of the brains setup

This commit is contained in:
2026-04-17 17:08:37 -05:00
parent 26614ea552
commit 03b52c84ca

View File

@@ -0,0 +1,18 @@
// General imports
import java.io.*;
import java.math.*;
import java.util.*;
public class Solution {
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();
}
}