Untitled

 avatar
unknown
plain_text
2 years ago
191 B
2
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