#Write a program that reads 3 integers #and finds a maximal among inputs #Input: -34 78 -12 #Output: 78 #Input: -23 -45 -67 #Output: -23 #Part I: num1=int(input("enter first int ")) num2=int(input("enter second int ")) num3=int(input("enter third int ")) #Step 1 - find max between first two numbers if(num1>num2): max=num1 else: max=num2 if(max