ZEROOOO commited on
Commit
ecec2b3
1 Parent(s): 5bc2c7c

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -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.text('A+B =' , a+b)