{
TASK:sum
LANG:pascal
}
var n,i:integer;
     a:array [ 1 ..1000] of integer;
begin
readln(n);
for i:=1 to n do  readln(a[i]);
WRITELN('11');
END.