# include<iostream> using namespace std; int main() { float sum = 0, n; for(int i = 0; i < 12; i++) { cin>>n; sum += n; } printf("¥%.2lf", sum/12); }