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):