Untitled
unknown
plain_text
2 years ago
238 B
9
Indexable
//домашка про двух бандитов
#include <iostream>
using namespace std;
int main()
{
int a;
cin >> a;
int b;
cin >> b;
int c = a + b - 1;
cout << c - a;
cout << " and ";
cout << c - b;
return 0;
}Editor is loading...