Write a program that takes 3 values from the user. Two values of integer and one value of
float data type. Print each result on one line.
#include <iostream> //preprogressive directive
using namespace std; // Global Identifier
int main() // main fuction
{ // Entry Point
int a, b;
float c;
cin>>a>>b>>c;
cout<<a<<b<<c;
return 0;
}