Codeforces solution 112A Petya and Strings Get link Facebook X Pinterest Email Other Apps November 30, 2018 #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; } Get link Facebook X Pinterest Email Other Apps Comments
Codeforces solution 630A Again Twenty Five! September 29, 2018 #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