import streamlit as st st.title("This is a demo") st.markdown("This is a description") x = st.slider("Put a number") st.write(x, "The square is", x*x)