题解 | #默契#
默契
https://ac.nowcoder.com/acm/contest/19304/C
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a==b) cout<<"Tacit!"<<endl;
else cout<<"No Tacit!"<<endl;
}
默契
https://ac.nowcoder.com/acm/contest/19304/C
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a==b) cout<<"Tacit!"<<endl;
else cout<<"No Tacit!"<<endl;
}
相关推荐