#ifndef OPERACIONES_H
#define OPERACIONES_H

int suma(int, int);
int resta(int, int);
int multiplica(int, int);
int divide(int, int);

#endif

