Skip to content

Instantly share code, notes, and snippets.

@pinglunliao
Last active November 5, 2019 08:40
Show Gist options
  • Save pinglunliao/6c7654048bbd3c6f1925 to your computer and use it in GitHub Desktop.
Save pinglunliao/6c7654048bbd3c6f1925 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main(int argc, char** argv) {
int n, m;
while(cin >> n >> m)
{
int ans = m + 1;
if(n == m)
ans = m;
cout << ans << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment