Cấu trúc rẽ nhánh.


Đề bài
Đề bài Điểm Thành viên
Problem A 100 1252
Problem B 100 479
Problem C 100 579
Problem D 100 876
Problem E 100 446
Problem F 100 1175
Problem G 100 505
Problem H 100 1509
Problem I 100 533
Problem J 100 446
Nhận xét
Phan Gia Huy

cau H:

include

using namespace std; int main() { long long a, b; cin >> a >> b; if (a%2==0) { if (b%2==0) { cout << “1”; } else { cout << “0”; } } else { if (b%2==0) { cout << “0”; } else { cout << “1”; } } }