Codeforces All Solution Get link Facebook X Pinterest Email Other Apps 1. Codeforces Solution 4A Watermelon 2. Codeforces Solution 50A Domino Piling 3. Codeforces Solution 71A Way Too Words 4. Codeforces Solution 110A Nearly Lucky Number 5. Codeforces Solution 122A Lucky Division 6. Codeforces Solution 118A String Task 7. Codeforces Solution 133A HQ9+ 8. Codeforces Solution 236A Boy or Girl 9. Codeforces Solution 281A Word Capitalization 10. Codeforces Solution 282A Bit++ 11. Codeforces Solution 469A I Wanna Be the Guy 12. Codeforces Solution 486A Calculation Function 13. Codeforces Solution 630A Again Twenty Five! 14. Codeforces Solution 705A Hulk 14. Codeforces Solution 734A Anton and Danik 15. Codeforces Solution 785A Anton and Polyhedrons 16. Codeforces Solution 977A Wrong Subtraction Get link Facebook X Pinterest Email Other Apps Comments
Codeforces solution 112A Petya and Strings #include <stdio.h> int main () { int n ; char a [ 200 ], b [ 200 ]; gets ( a ); gets ( b ); n = strcmpi ( a , b ); printf ( "%d\n" , n ); return 0 ; } Read more
Codeforces solution 630A Again Twenty Five! #include < bits / stdc ++. h > using namespace std ; int main () { long long int n ; cin >> n ; cout << 25 << endl ; return 0 ; } Read more
Comments
Post a Comment