Guest User

Untitled

a guest
Nov 13th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. a = []
  2. b = []
  3. n1 = int(input("Ingrese la cantidad de elementos del primer arreglo: "))
  4. n2 = int(input("Ingrese la cantidad de elementos del segundo arreglo: "))
  5. for i in range(0,n1):
  6. a.append(int(input("Ingrese un numero para primer vector: ")))
  7. for i in range(0,n2):
  8. b.append(int(input("Ingrese un numero para segundo vector: ")))
Add Comment
Please, Sign In to add comment