Untitled

Anonymous
plain_text
11/22/2023 6:36 PM
256 B
14
Indexable
#include <iostream>
using namespace std;

int main()
{
	int a, b, c;
	cin >> a >> b >> c;
	if (a + b == c) {
		cout << "virozhdenniy";
	}
	else { cout << "nevirozhdenniy"; }
	
}
Editor is loading...
Leave a Comment