Untitled

Anonymous
plain_text
11/02/2023 3:41 PM
388 B
28
Indexable
#include <iostream>
using namespace std;

int main()
{
	int x, y;
	cin >> x >> y;
	if (x > 0 && y > 0) {
		cout << "1chetvert'";
	}
	if (x<0&&y<0) {
		cout << "3chetvert'";
	}
	if (x < 0 && y>0) {
		cout << "2chetvert'";
	}
	if (x>0&& y<0) {
		cout << "4chetvert'";
	}
}
Editor is loading...