diff --git a/codeforces/Watermelon.java b/codeforces/Watermelon.java index 0a51c29..3e5f787 100644 --- a/codeforces/Watermelon.java +++ b/codeforces/Watermelon.java @@ -6,8 +6,8 @@ public class Watermelon{ public static void main(String[] args) { - Scanner sc = new Scanner(System.in); - int n = sc.nextInt(); + Scanner s = new Scanner(System.in); + int n = s.nextInt(); if(n>2 && (n%2==0)){ System.out.println("YES"); } @@ -20,7 +20,7 @@ else if (n<=2 || (n%2!=0)){ System.out.println("NO"); } - sc.close(); + s.close(); } -} \ No newline at end of file +}