6. Write Python program that accepts marks in 5 subjects and outputs average marks.

# Code
a, b, c, d, e = map(int, input('Enter your marks : ').split())
print((a+b+c+d+e)/5)