4#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ ENGG1811 Lecture 2: Filling in the logical condition Purpose: The program asks the users to input two numbers The variable bigger_number should be assigned to the bigger number between a and b Quiz: You need to come out with the logical condition """ # Input two numbers a = float(input('Please input the 1st number:')) b = float(input('Please input the 2nd number:')) if a > b : bigger_number = a else: bigger_number = b print('The bigger number is',bigger_number)