String Concatenation
print("hello"+" Ankush Sahu")
# print("hello"+3)
#Error bcz it doesn't add str and int or two different data types
INFO
print("hello"+" Ankush Sahu")
# print("hello"+3)
#Error bcz it doesn't add str and int or two different data types