You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
print min(1,2)
|
|
|
print min(2,1)
|
|
|
print min(-0.3,0.3)
|
|
|
print min(-0.3,4)
|
|
|
print max(1,2)
|
|
|
print max(2,1)
|
|
|
print max(-0.3,0.3)
|
|
|
print max(-0.3,4)
|
|
|
|