From 5cc518aff59b1eb9efac9e66454fe883182700d6 Mon Sep 17 00:00:00 2001 From: hemanth981 <56482674+hemanth981@users.noreply.github.com> Date: Sat, 12 Oct 2019 21:29:50 +0530 Subject: [PATCH] Update ChefOperators.java --- codechef/ChefOperators.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/codechef/ChefOperators.java b/codechef/ChefOperators.java index 9bdd8c3..7cfd97f 100644 --- a/codechef/ChefOperators.java +++ b/codechef/ChefOperators.java @@ -6,11 +6,11 @@ public class ChefOperators{ public static void main(String[] args) { int T; - Scanner sc = new Scanner(System.in) ; - T= sc.nextInt(); + Scanner s = new Scanner(System.in) ; + T= s.nextInt(); while (T>0){ - int A = sc.nextInt(); - int B = sc.nextInt(); + int A = s.nextInt(); + int B = s.nextInt(); if (A>B){ System.out.println(">"); } @@ -26,4 +26,4 @@ else if (A