From b2b79fcc3b0ec97e7acfe782027bf0e3bc8fd8a7 Mon Sep 17 00:00:00 2001 From: oncuab Date: Sat, 1 Jul 2023 02:15:47 +0200 Subject: [PATCH] Your commit message here --- solutions.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/solutions.md b/solutions.md index 984b4cc..16cd443 100644 --- a/solutions.md +++ b/solutions.md @@ -1,4 +1,19 @@ -# ex6 Solution +# Ex1 Solution + +print("welcome to my first program") + +print("Please write your first number:") + +a = int(input()) + +print("Please write your second number:") + +b = int(input()) + +print("You entered this numbers respectively:", b, a) + + +# Ex6 Solution laptopPrice = int(input()) @@ -10,7 +25,7 @@ print(totalPrice) -# ex7 Solution +# Ex7 Solution numberOfYears = int(input())