Write a Boolean expression that tests if the value stored in the variable num1 is equal to the value stored in the variable num2
.
1 answer:
Answer:
num1 = int(input("Enter value: "))
num2 = int(input("Enter value: "))
if num1 == num2:
print("Equals.")
else:
print("Unequal.")
Explanation:
You might be interested in
Answer:
A light bulb produces light from electricity
computer ethis are crime done using computer technology (true )and(false)
answer- true
First you go to the 3 dots neer the x you pres it thin you go to downloads and it shod be ther i hop i help if so make me the branliy
Answer:
for (char outerChar='a'; outerChar<='e'; outerChar++){
for (char innerChar='a'; innerChar<='e'; innerChar++){
cout << outerChar << innerChar << "\n";
}
}