Submission #1475486


Source Code Expand

#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
main(){
    int A,B,C,n;
    cin >> A >> B >> C;
    n = A*100+B*10+C;
    if(n%4)cout << "NO" << endl;
    else << "YES" << endl;
}

Submission Info

Submission Time
Task A - RGB Cards
User Bantako
Language C++14 (GCC 5.4.1)
Score 0
Code Size 208 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:9:10: error: expected primary-expression before ‘<<’ token
     else << "YES" << endl;
          ^