Uri Solution 1387 Og Get link Facebook X Pinterest Email Other Apps November 17, 2018 #include<stdio.h> int main() { int a,b; while(1) { scanf("%d %d",&a,&b); if(a==0 && b==0) { break; } printf("%d\n",a+b); } return 0; } Get link Facebook X Pinterest Email Other Apps Comments
Codeforces solution 112A Petya and Strings 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 ; } Read more
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