File size: 110 Bytes
6219354
 
89a57b7
 
e9ff953
1
2
3
4
5
import streamlit as st

a = st.number_input('A', 0, 10)
b = st.number_input('B', 0, 10)
st.write('A+B =', a+b)