Inthv commited on
Commit
1432735
·
1 Parent(s): bb66079

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.write('A+B=',a+b)