0% found this document useful (0 votes)
638 views1 page

20 Easy Codeforces Problem

The document lists 20 easy problems from Codeforces ranging from contests 4 to 705. It provides the URL for each problem and recommends using GNU GCC C11 and GNU G++ compilers. It also includes a sample C code for the first problem listed, which checks if an integer is even or not equal to 2.

Uploaded by

Sanjida Islam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
638 views1 page

20 Easy Codeforces Problem

The document lists 20 easy problems from Codeforces ranging from contests 4 to 705. It provides the URL for each problem and recommends using GNU GCC C11 and GNU G++ compilers. It also includes a sample C code for the first problem listed, which checks if an integer is even or not equal to 2.

Uploaded by

Sanjida Islam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

20 Easy Codeforces Problem

1. https://codeforces.com/contest/4/problem/A
2. https://codeforces.com/contest/282/problem/A
3. https://codeforces.com/contest/705/problem/A
4. https://codeforces.com/contest/271/problem/A
5. https://codeforces.com/contest/231/problem/A
6. https://codeforces.com/contest/136/problem/A
7. https://codeforces.com/contest/59/problem/A
8. https://codeforces.com/problemset/problem/71/A
9. https://codeforces.com/problemset/problem/1/A
10. https://codeforces.com/problemset/problem/263/A
11. https://codeforces.com/problemset/problem/339/A
12. https://codeforces.com/problemset/problem/116/A (ICPC preliminary practice round this year)
13. https://codeforces.com/contest/155/problem/A
14. https://codeforces.com/problemset/problem/318/A
15. https://codeforces.com/problemset/problem/546/A
16. https://codeforces.com/problemset/problem/61/A
17. https://codeforces.com/problemset/problem/141/A
18. https://codeforces.com/problemset/problem/133/A
19. https://codeforces.com/problemset/problem/151/A
20. https://codeforces.com/problemset/problem/69/A

● Use GNU GCC C11 5.1.0 compiler for C

● Use GNU G++20 11.2.0 (64 bit, winlibs) compiler for C++

Sample code for : https://codeforces.com/contest/4/problem/A

#include<stdio.h>

int main()
{
int w;
scanf("%d",&w);
if(w!=2 && w%2==0)
printf("YES\n");
else
printf("NO\n");

return 0;
}

You might also like