diff --git a/strcat.py b/strcat.py new file mode 100644 index 0000000..39ff4fd --- /dev/null +++ b/strcat.py @@ -0,0 +1,4 @@ +a="sai " +b="hello" +c=",welcome to python 75 hackathon" +print(a+b+c)