#include <iostream> //
#include <cmath> 
using namespace std;

int main() {
	float n1=0; 
	float n2=0;
	float n3=0; 
	float suma=0; 
	cout << " Ingrese n1 " << endl ;
	cin >> n1;
	cout << " Ingrese n2 " << endl ;
	cin >> n2;
	cout << " Ingrese n3 " << endl ;
	cin >> n3;
	suma=n1+n2+n3;
	cout << "La suma de los numeros ingresados es:" <<suma<< endl ;
 return 0;	

}

