# Word and Character Count Program
text = "Welcome to Raspberry Pi"
# Count words
word_count = len(text.split())
# Count characters
char_count = len(text)
print("Input String:", text)
print("Number of Words:", word_count)
print("Number of Characters:", char_count)