Codeforces 703 A. Mishka and Game Solution

Solve in c++:


#include<bits/stdc++.h>
using namespace std;
main(){


int t,i,a,b,m=0,c=0;
while(cin>>t)
{
    for(i=0;i<t;i++)
    {
        cin>>a>>b;
        if(a>b)
        m++;
        else if(b>a)
        c++;
    }
    if(m>c)
    cout<<"Mishka"<<endl;
    else if(c>m)
    cout<<"Chris"<<endl;
    else
    cout<<"Friendship is magic!^^"<<endl;
    c=0,m=0;

}

c=0,m=0;


}





No comments

Most View Post

Recent post

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.