1

1
Hacer un algoritmo que sume dos números. Inicio Entero N1, N2, S; Escriba “Digite el numero”; Lea N1; Escriba “Digite el segundo numero”; Lea N2; S= N1+N2; Escriba S; Fin

Transcript of 1

Page 1: 1

Hacer un algoritmo que sume dos números.

Inicio

Entero N1, N2, S;

Escriba “Digite el numero”;

Lea N1;

Escriba “Digite el segundo numero”;

Lea N2;

S= N1+N2;

Escriba S;

Fin