Codeforces Round #411 (Div. 2), problem: (A) Fake NP Solution In C/C++

#include <iostream>
int l,r;
int main() {
std::cin>>l>>r;
std::cout<<(l==r ? l:2);
return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *