Submission #2409882


Source Code Expand

import java.util.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int r = sc.nextInt();
		int g = sc.nextInt();
		int b = sc.nextInt();
		if (((g * 10) + b) % 4 == 0) {
			System.out.println("YES");
        }
      	else {
          System.out/println("NO");
        }
	}
}

Submission Info

Submission Time
Task A - RGB Cards
User rune0202
Language Java7 (OpenJDK 1.7.0)
Score 0
Code Size 344 Byte
Status CE

Compile Error

./Main.java:12: error: not a statement
          System.out/println("NO");
                    ^
1 error