Problem Statement
Write a C program that reads a lowercase letter from the user and prints all lowercase letters from 'a' up to and including the input letter.
For example, if the user enters 'e', your program should print 'abcde'. If the user enters 'm', your program should print 'abcdefghijklm'.
Requirements:
- Use a loop to generate the sequence
- Handle only valid lowercase letters from 'a' to 'z'
- Print all characters on a single line with no spaces