1#Normal:#
2print("Hiya Grepper!") #Output: Hiya Grepper!#
3#As Equation:#
4print(1+1) #Output: 2#
5#With String Variables:#
6x = 'Pog'
7print(x + 'Champ') #Output: PogChamp#
8#With Integer Variables:#
9y = 9999
10z = str(y)
11print('You have ' + z + ' IQ') #Output: You have 9999 IQ#
12#NOTE: Not converting the int variable to a str variable will return an error#