#include <stdio.h>
int main() {
	double x, sum = 0;
	while (EOF != scanf("%lf", &x)) 
	{
		sum += x;
	}
	printf("Summa %g", sum);
}