Computer Science - Text-Based Programming - Python - Input and output - Complete the Programs
Fill in missing input/output code. P1: 'Ask user's age and print if they can vote.' → age = ___(input('How old are you? ')) [int] → if age >= 18: print(___) ['You can vote!']. P2: 'Ask for two numbers and print their sum.' → a = float(input(___)) ['Enter first number: '] → b = float(input('Enter sec