Untitled

Anonymous
plain_text
10/14/2023 6:48 PM
320 B
19
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...