Omkar4141 commited on
Commit
ec4246f
1 Parent(s): 3792182

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,4 +1,5 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Input Values',x,y)
 
4
  st.write(x,y ,'addition is', x + y)
 
1
  import streamlit as st
2
 
3
+ x = st.add('Input Values',x)
4
+ y = st.add('Input Values',y)
5
  st.write(x,y ,'addition is', x + y)