6. Write Python program that accepts marks in 5 subjects and outputs average marks. / sa 11 ip chapter 3, sa 12 cs chapter 6, Uncategorized / By PythonCSIP CS IP # Code a, b, c, d, e = map(int, input('Enter your marks : ').split()) print((a+b+c+d+e)/5)