diff options
Diffstat (limited to 'progs/a590.py')
-rw-r--r-- | progs/a590.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/a590.py b/progs/a590.py new file mode 100644 index 0000000..dbca6c1 --- /dev/null +++ b/progs/a590.py @@ -0,0 +1,8 @@ +def min_of_three(a,b,c):
+ if (a <= b) and (a <= c):
+ smallest = a
+ elif (b <= a) and (b <= c):
+ smallest = b
+ else:
+ smallest = c
+ return smallest
\ No newline at end of file |