Search
 
SCRIPT & CODE EXAMPLE
 

CPP

watermelon codeforces solution

#include<iostream>
using namespace std;
int main()
{
    int s;
    cin >> s;
    if(s % 2 == 0 && s > 2)
        cout << "YES" << endl;
    else
        cout << "NO" << endl;
    return 0;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: std string to wstring 
Cpp :: create and write to a file c++19 
Cpp :: print linkedstack cpp 
Cpp :: precision of fixed in c++ 
Cpp :: char type casting in c++ 
Cpp :: eosio get time 
Cpp :: for loop reverse C++ 
Cpp :: modf() c++ 
Cpp :: void value not ignored as it ought to be 
Cpp :: Return multiple values from a function using pointers 
Cpp :: custom comparator in set of struct 
Cpp :: write variable to file cpp 
Cpp :: c++ std::find with lambda 
Cpp :: length of 2d array c++ 
Cpp :: PI IN C++ WITH CMATH 
Cpp :: go through std vector 
Cpp :: unclebigbay 
Cpp :: how to sort a vector in descending order in c++ 
Cpp :: fork c 
Cpp :: fabs() c++ 
Cpp :: getch c++ library 
Cpp :: c++ ros publisher 
Cpp :: C++ Program to Reverse an Integer 
Cpp :: parallelize for loop c++ 
Cpp :: chrono start time in c++ 
Cpp :: string to int in c++ 
Cpp :: elements of set c++ 
Cpp :: footnote appears in the middle latex 
Cpp :: c++ simple projects 
Cpp :: udo apt install dotnet-sdk-5 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =