Untitled

 avatar
unknown
c_cpp
2 years ago
168 B
3
Indexable
#include <iostream>
using namespace std;

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