From 1670915e96ab229e0561cab5bebfbac649bc9487 Mon Sep 17 00:00:00 2001 From: codewithkanhaiya <89131687+codewithkanhaiya@users.noreply.github.com> Date: Mon, 31 Oct 2022 00:10:29 +0530 Subject: [PATCH] solution for big seven.py --- Python Solutions/solution for big seven.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Python Solutions/solution for big seven.py diff --git a/Python Solutions/solution for big seven.py b/Python Solutions/solution for big seven.py new file mode 100644 index 0000000..15f7e78 --- /dev/null +++ b/Python Solutions/solution for big seven.py @@ -0,0 +1,9 @@ +n1=int(input("Enter The First number : ")) +n2=int(input("Enter The Second number : ")) +n3=int(input("Enter The Third number : ")) +if (n1>n2) and (n1>n3): + print("Result : ",n1,"is biggest number") +elif (n2>n1) and (n2>n3): + print("Result : ",n2,"is biggest number") +else: + print("Result : ",n3,"is biggest number")