Code:
firstName = "Bill"
lastName = "Nye"
coupon = 15
joinDate = "January 14, 1973"
print("Hello, " + firstName + lastName)
print("Thanks for subscribing to our newsletter!")
print("Here's a coupon for " + str(coupon) + "% off for being subscribed since " + joinDate)
Output:
Hello, BillNye
Thanks for subscribing to our newsletter!
Here's a coupon for 15% off for being subscribed since January 14, 1973