# Example 1 : Text Input and Button
st.title("Interactive App : User Input")
# Text Input Feild
name = st.text_input("Enter your name:")
# Create Buttonif st.button("Greet"):
st.write(f"Hello, {name}! Welcome to your first interactive Streamlit app.")