Write a program that adds two floating point numbers and shows the sum on screen

Write a program that adds two floating point numbers and shows the sum on screen






#include<iostream>
using namespace std;
int main()
{
float x,y,z;
cout<<"\t Sum of Point Numbers"<<endl;
cout<<"\n";
cout<<"Enter First Number"<<endl;
cin>>x;
cout<<"Enter Second Number"<<endl;
cin>>y;
z=x+y;
cout<<"Sum of given numbers is "<<z;

}

Write a program that adds two floating point numbers and shows the sum on screen