index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a722.py
blob: 6fff9ea4e74bcfdd77e9ba4d830b9d3aaba72f83 (
plain
)
1
2
3
4
5
def
Check_Solution
(
a
,
b
,
c
):
if
(
2
*
b
*
b
==
9
*
a
*
c
):
return
(
"Yes"
);
else
:
return
(
"No"
);