From 03b52c84cafed775c298459bb30a7e534d9dcbfe Mon Sep 17 00:00:00 2001 From: KeshavAnandCode Date: Fri, 17 Apr 2026 17:08:37 -0500 Subject: [PATCH] battle of the brains setup --- .../battle-of-the-brains-2026/Solution.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 solutions/battle-of-the-brains-2026/Solution.java diff --git a/solutions/battle-of-the-brains-2026/Solution.java b/solutions/battle-of-the-brains-2026/Solution.java new file mode 100644 index 0000000..df0844a --- /dev/null +++ b/solutions/battle-of-the-brains-2026/Solution.java @@ -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(); + } +}