#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 ;
cout << "La suma de los numeros ingresados es:" << n1 + n2 + n1 << endl ;
cin>>SUMA ;
 return 0;	

}

