Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Jnp
/
Jajah
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Jajah
/
app.py
Jnp
Create app.py
3dfe9f9
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
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)