new_era / streamlit_app.py
nonstopiodemo's picture
Upload folder using huggingface_hub
1280c21 verified
raw
history blame contribute delete
323 Bytes
import streamlit as st
def main():
st.title("Addition of Two Numbers")
num1 = st.number_input("Enter the first number:")
num2 = st.number_input("Enter the second number:")
result = num1 + num2
st.write(f"The result of {num1} + {num2} is: {result}")
if __name__ == '__main__':
main()