procedure TForm1.ButtonClick(Sender: TObject) begin Label3.Caption:= StrToInt(Label1.Caption) + StrToInt(Label2.Caption); end;
procedure TForm1.ButtonClick(Sender: TObject) begin Label3.Caption:= IntToStr(StrToInt(Label1.Caption) + StrToInt(Label2.Caption)); end;