Jajah / app.py
Jnp's picture
Create app.py
3dfe9f9
raw
history blame contribute delete
107 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)