@@ -0,0 +1,15 @@
program tkn;
uses SysUtils;
var
cpf: string;
last: integer;
begin
cpf := '12345678912';
last := (Ord(cpf[10])-Ord('0'))*10+(Ord(cpf[11])-Ord('0'));
writeln(last);
end.
The note is not visible to the blocked user.