10 lines
123 B
Python
10 lines
123 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Task 102"""
|
|
|
|
def add_three_numbers(a, b, c):
|
|
return a + b + c
|
|
|
|
|