From 190c13d5938fb28f99d4c299f366a5d9925cc5d6 Mon Sep 17 00:00:00 2001 From: Poonam Kaur <36960022+poonam5248@users.noreply.github.com> Date: Tue, 15 Oct 2019 10:18:29 +0530 Subject: [PATCH] Update assignment5_if_else.py --- assignment5_if_else.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assignment5_if_else.py b/assignment5_if_else.py index 6a39d79..acc7652 100644 --- a/assignment5_if_else.py +++ b/assignment5_if_else.py @@ -37,9 +37,9 @@ print("question no 3") -p=int(input("enter age of 1st person ")) -q=int(input("enter age of 2nd person ")) -r=int(input("enter age of 3rd person ")) +p=int(input("Enter age of 1st person ")) +q=int(input("Enter age of 2nd person ")) +r=int(input("Enter age of 3rd person ")) if (p>q) and (p>r): print("1st person is oldest") elif (q>r) and (q>p):