Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
VenkyPas
/
llm-app
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
16345dc
llm-app
/
test.py
VenkyPas
Extra message
30a7949
11 months ago
raw
Copy download link
history
blame
Safe
105 Bytes
a =
10
b =
15
print
(
"%d + %d = %d"
% (a, b, a+b))
print
(
"%d / %d = %0.2f"
% (b, a, b/a))
print
(
"÷"
)