Untitled
unknown
plain_text
2 years ago
289 B
15
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...