Untitled
Anonymous
plain_text
10/18/2023 7:19 PM
288 B
26
Indexable
#include <iostream>
using namespace std;
int main()
{
int a = 0;
cin >> a;
if (a % 4 == 0)
{
cout << "YES";
}
else
{
cout << "NO";
}
return 0;
}Editor is loading...