From 1f65c20b21d1ded879ad9cadd89e470a96b92274 Mon Sep 17 00:00:00 2001 From: deepcodespythonmorethenu <72375257+deepcodespythonmorethenu@users.noreply.github.com> Date: Fri, 16 Oct 2020 10:38:03 +0530 Subject: [PATCH] weight converterr converts weight from kgs to lbs --- weight converter kgs to lbs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 weight converter kgs to lbs diff --git a/weight converter kgs to lbs b/weight converter kgs to lbs new file mode 100644 index 0000000..7c142af --- /dev/null +++ b/weight converter kgs to lbs @@ -0,0 +1,4 @@ +x = int(input("weight in kgs: ") +y = x * 2.205 + +print(y)