Toggle navigation
YouTube
Facebook
Twitter
Telegram
english
english
українська
Algotester 3.2
Build 408
2023-08-14
Log In
Contact Us
Sponsors
Donate
Sources
C++
#include "bits/stdc++.h" using namespace std; int main() { int a, b; cin>>a>>b; if (a + 1 < b) cout << a + 1 << endl; else if (b + 1 < a) cout << b + 1 << endl; else cout << -1 << endl; }