#include<iostream> using namespace std; int main() { double i, j=0; for(int k=1;k<=12;k++) { cin>>i; j+=i; } printf("¥%.2lf",j/12); return 0; }