1import streamlit as st2 3x = st.slider('Select a value')4st.write(x, 'squared is', x * x)5print("hello")