#popcorn hack
num1 = 7  
num2 = 7  

are_equal = num1 == num2

print(are_equal)
True
#popcorn hack
num1 = 5  
num2 = 5  

are_not_equal = num1 != num2

print(are_not_equal)
False
#popcorn hack
num1 = 5  
num2 = 7  

is_less_than = num1 > num2

print(is_less_than)
False
#popcorn hack
num1 = 9  
num2 = 7  

is_greater_than = num1 > num2

print(is_greater_than)
True
#popcorn hack
grade = 100
result = grade > 70 and grade < 100
print(result)
grade = 85
result = grade > 70 and grade < 100
print(result)
False
True
#popcorn hack
score = 175
highScore = 150
lives = 2
result = (score < highScore) or (lives < 3)
print(result)
score = 175
highScore = 150
lives = 2
result = (score < highScore) or (lives > 3)
print(result)
True
False
#popcorn hack
num1 = 6
num2 = 12

sum = num1 +num2

if sum>100:
    print('100')
else:
    print(sum)
18
#homework hack 1

#true 
student1 = 95
student2 = 80
student3 = 90

average = (student1+student2+student3)/3
is_greater_than = average >= 85
print(is_greater_than)

#false
student4 = 70
student5 = 75
student6 = 76

average = (student4+student5+student6)/3
is_greater_than = average >= 85
print(is_greater_than)
True
False
temp = 15
weather = 'stormy'
cangoout = weather = 'stormy' and temp>=20
print(cangoout)

False