#!/usr/bin/env python3; ############################################################################### # This program demonstrates string concatenation. # # Copyright © 2020 Richard Lesh. All rights reserved. ############################################################################### # Begin Main a = "one" b = "two" c = "three" d = a + b + c print(d) d = a + "\t" + b + "\n" + c print(d)