From 3496b0ed08c51e37e135e686b1632fd86f930c2c Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Mon, 30 Sep 2024 16:08:27 +0530 Subject: (init): Initialize repository. --- problems/aweirdclock/attachments/template.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 problems/aweirdclock/attachments/template.java (limited to 'problems/aweirdclock/attachments/template.java') diff --git a/problems/aweirdclock/attachments/template.java b/problems/aweirdclock/attachments/template.java new file mode 100644 index 0000000..285b023 --- /dev/null +++ b/problems/aweirdclock/attachments/template.java @@ -0,0 +1,16 @@ +import java.util.*; +import java.io.*; +import java.math.*; + +class Solution { + + public static void main(String args[]) { + Scanner in = new Scanner(System.in); + String readableText = in.nextLine(); + + // Write an answer using System.out.println() + // To debug: System.err.println("Debug messages..."); + + System.out.println("HH:MM"); + } +} -- cgit v1.2.3