Untitled
Anonymous
plain_text
10/30/2022 12:17 PM
188 B
12
Indexable
#include <iostream>
using namespace std;
int main()
{
int A;
cin >> A;
if (A % 2==0)
cout << "YES";
else
cout << "NO";
}Editor is loading...
#include <iostream>
using namespace std;
int main()
{
int A;
cin >> A;
if (A % 2==0)
cout << "YES";
else
cout << "NO";
}