Question: create a python code for the given problem. Problem A: Equalities Given four user - inputted numbers, A , B , C , and D

create a python code for the given problem.
Problem A: Equalities
Given four user-inputted numbers, A, B, C, and D (each on a separate line), output a boolean value for each of the following questions (each output on a separate line):
Is A equal to C?
Is B equal to D?
Is A equal to C and is B equal to D?
Is A equal to C or is B equal to D?
[IN]: 5
[IN]: 4
[IN]: 3
[IN]: 4
[OUT]: False
[OUT]: True
[OUT]: False
[OUT]: True
create a python code for the given problem.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!