#38725: c++ans 非常厲害


aidenlin766909@gmail.com (aiden lin)

學校 : 不指定學校
編號 : 245101
來源 : [1.163.104.115]
最後登入時間 :
2024-07-28 19:30:56

#include <iostream>
using namespace std;
int main() 
{
  int n;
  cin >> n;
  for (int i = 0; i < n; i++) 
  {
    int x;
    cin >> x;
    int t;
    cin >> t;
    if (x == t) 
    {
      cout << "yes" << endl;
    } 
    else 
    {
      cout << "no" << endl;
    }
  }
}