A. a<0 b>=0
- #include<iostream>
- using namespace std;
- int main()
- {
- int a,b;
- cin >> a >> b;
- if(_①_)
- {
- if(_②_){
- cout <<1;
- return 0;
- }
- }
- if(a >= 0){
- if(b < 0){
- cout <<1;
- return 0;
- }
- }
- cout <<0;
- return 0;
- }
B. a>0 b<=0
C. a>=0 b>=0
D. a <0 b<0