This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

41 lines
208 B
Python

def smallest(a,b,c):
if a<b and a<c:
print (a)
elif b<c:
print (b)
else:
print (c)
-24
2
#mainprogram
smallest(45,-24,89.90)
smallest(100,20,2)