Hebaelsayed commited on
Commit
4f5c546
·
verified ·
1 Parent(s): 76bb91c

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.set_page_config(page_title="Math AI", layout="wide")
4
+
5
+ st.title("🧮 Math AI System")
6
+ st.markdown("### Step 1: Testing Basic Setup")
7
+
8
+ st.success("✅ Your app is running!")
9
+ st.write("If you see this, everything is working!")
10
+
11
+ # Test user input
12
+ name = st.text_input("What's your name?")
13
+ if name:
14
+ st.write(f"Hello, {name}! 👋")