#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ ENGG1811 Lecture 2 Demonstrating Boolean operators """ # Input two numbers a = float(input('Please input the 1st number:')) b = float(input('Please input the 2nd number:')) if a > 5 and b > 10: print('The condition is True') else: print('The condition is False') # Try these too: # if a > 5 or b > 10: # if not(a > 5): # #