Untitled

Anonymous
plain_text
11/23/2023 6:11 AM
332 B
14
Indexable
#include <iostream>

using namespace std;

int main() {
	setlocale(LC_ALL, "Russian");
	int a, b, c;
	cin >> a >> b >> c;
	if (a + b == c || b + c == a || a + c == b) cout << "Вырожденный";
	else cout << "Не вырожденный";
}
Editor is loading...
Leave a Comment