Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Inthv
/
jklmnopqrstuvwxyz
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Inthv
commited on
Nov 22, 2022
Commit
1432735
·
1 Parent(s):
bb66079
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
3
+
a = st.number_input('A',0,10)
4
+
b = st.number_input('B',0,10)
5
+
st.write('A+B=',a+b)