1import streamlit as st2 3a = st.number_input('A', 0, 10)4b = st.number_input('B', 0, 10)5st.write('A+B =', a+b)