Heedo / app.py
raider37's picture
Update app.py
70bf6e6
raw
history blame contribute delete
112 Bytes
import streamlit as st
a = st.number_input('A', 0 , 10)
b = st.number_input('B', 0 , 10)
st.write('A+B =',a+b)