This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
#include <stdio.h> int main () { int a=0; int s=0; int multiplicacion=0; printf ("ingrese el primer numero a multiplicacion"); scanf ("%i",&a); printf ("ingrese el segundo numero a multiplicacion"); scanf ("%i",&s); multiplicacion=a*s; printf ("la multiplicacion es %i", multiplicacion); return 0; }