杭电2054A == B ?(未解决 坑爹)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2054

开始还以为这题放在这,太那个了,结果无语·······

提交两次没有AC,坑爹············

脑残的代码:

#include <cstdlib>

#include <iostream>



using namespace std;



int main(int argc, char *argv[])

{

    int a,b;

    while(cin>>a>>b)

    {

      if(a==b)

        cout<<"YES"<<endl;

      else

        cout<<"NO"<<endl;

    }

    system("PAUSE");

    return EXIT_SUCCESS;

}

 

 

努力解决ing················

你可能感兴趣的:(==)