zjfz-2019-s402281/intro/Task102.py

10 lines
123 B
Python
Raw Normal View History

2020-01-12 13:39:07 +01:00
#!/usr/bin/python
2020-01-12 13:42:15 +01:00
# -*- coding: utf-8 -*-
2020-01-12 13:39:07 +01:00
2020-01-12 13:16:55 +01:00
"""Task 102"""
2020-01-12 13:21:47 +01:00
def add_three_numbers(a, b, c):
return a + b + c
2020-01-12 13:16:55 +01:00
2020-01-12 13:42:15 +01:00