Spaces:
Sleeping
Sleeping
shikharyashmaurya
commited on
Commit
•
e13c355
1
Parent(s):
ae7c768
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ b = st.number_input("Enter value of b:", min_value=0)
|
|
15 |
# Calculate c using the function
|
16 |
try:
|
17 |
c = calculate_c(a, b)
|
18 |
-
st.write("The value of c is:", c)
|
19 |
except ValueError:
|
20 |
st.error("Please enter non-negative values for a and b.")
|
21 |
|
|
|
15 |
# Calculate c using the function
|
16 |
try:
|
17 |
c = calculate_c(a, b)
|
18 |
+
st.write("The value of c is:", c,font="large")
|
19 |
except ValueError:
|
20 |
st.error("Please enter non-negative values for a and b.")
|
21 |
|