fdf
unknown
c_cpp
a year ago
227 B
5
Indexable
#include <iostream> using namespace std; int main() { int x,y; cin >> x >> y; if (x > 0 and y > 0) cout << "1"; else if (x > 0 and y < 0) cout << "4"; else if (x < 0 and y > 0) cout << "2"; else cout << "3"; }
Editor is loading...