Trying things out

I'm going to see if I can actually do something with Python

print("Hello everyone")
Hello everyone

It Worked!

Let's do something a little harder

a = 2
b = 5
c = (a + b)
d = 7

if (c == d):
    for i in range(3):
        print("2+5 is equal to 7")
2+5 is equal to 7
2+5 is equal to 7
2+5 is equal to 7

That's all for now!

<<<<<<< HEAD =======
print("good afternoon")
good afternoon
>>>>>>> 31e5fbc87eaddd935747d10ca14fa5f646cc95c1