Any questions do not hesitate to contact.
#include <iostream>
using namespace std;
int main()
{
int casos,numero,mes;
cin >> casos;
for(int i=0; i<casos; i++)
{
cin>> numero>>mes;
if(numero == 25 && mes== 12)
{
cout << "SI\n";
}
else
cout << "NO\n";
}
return 0;
}
Keep in touch with Isaac Lozano Osorio!