# -*- coding: utf-8 -*-
"""
Created on Wed Sep 23 08:28:30 2020

@author: Sim
"""

# onestar1.py
def mymean(*x):
  print(x)
  average = sum(x)/len(x)
  return average

print(mymean(1,2,3,4))
print(mymean(3,4,5))