Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

print("Hello World")

print("This is not so good")


print(1232344)
age = 13
print(age)
firstName = "Karim"
lastName = "Kaizon"
print(firstName + " " + lastName)
name = input("provide your Name:")
print (name)

num1 = input("provide the first num:")


num2 = input("provide the second num:")
n1 = int(num1)
n2 = int(num2)
print(n1 + n2)

num1 = input("provide your first number:")


num2 = input("provide your second number:")
n1 = float(num1)
n2 = float(num2)
print(n1 + n2)

price = 400
if price > 500:
print("I will not buy it")

else:
print("I will give it as a gift")
print("Hello World!")

You might also like