O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
num1=int(input("Enter the first number")) num2=int(input("Enter the second number")) num3=int(input("Enter the third number")) max=num1 if num2>max: max=num2 if num3>max: max=num3 print("Largest number is:",max)
▶ Run Code
🖥 Output: