From 8145f66bc79bc39800ba8b3d7be819d9e88dff55 Mon Sep 17 00:00:00 2001 From: d3ku45 <53232960+d3ku45@users.noreply.github.com> Date: Fri, 25 Oct 2019 12:25:21 +0530 Subject: [PATCH] Update Hulk.java --- codeforces/Hulk.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/codeforces/Hulk.java b/codeforces/Hulk.java index 97cf17d..452a24c 100644 --- a/codeforces/Hulk.java +++ b/codeforces/Hulk.java @@ -4,9 +4,9 @@ public class Hulk{ public static void main(String[] args) { - Scanner s = new Scanner(System.in); - int m = s.nextInt(); - s.close(); + Scanner sc = new Scanner(System.in); + int m = sc.nextInt(); + sc.close(); int k = 1; while(k<=m){ if(k%2==0){ @@ -23,4 +23,4 @@ public static void main(String[] args) { System.out.print("it"); System.out.println(); } -} \ No newline at end of file +}