a = "hello"
b = "world"
c = 34

# यह सही तरीका है 

print(a+b)
print("hello" + "world")

# नीचे वाले कोड को प्रिंट करने के लिए कोड को सेलेक्ट करे और ctrl और / को एक साथ दबाए 
# यह गलत तरीका है 

# print(a+c) 
# print(a+34)
# print("hello" + c)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: