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