Write a complete program that declares an integer variable , reads a value from the keyboard into that variable, and writes to standard output the variable’s value, twice the value, and the square of the value, separated by spaces.

LANGUAGE: C++

CHALLENGE:

Write a complete program that
declares an integer variable ,
reads a value from the keyboard into that variable, and
writes to standard output the variable’s value, twice the value, and the square of the value, separated by spaces.

Besides the numbers, nothing else should be written to standard output  except for spaces separating the values .

SOLUTION:



#include <iostream>
using namespace std;
int main(){
	int i,twice,square;
	cin >> i;
	cout << i << " ";
	twice = 2*i;
	cout << twice << " ";
 	square = i*i;
	cout << square;
}