iostream
int main() {
int x;
// Read integer from standard input
cin >> x;
// Write integer to standard output
cout << x << endl;
}int main() {
int a, b, c;
// Read three integers from standard input
cin >> a >> b >> c;
// Do something with the values
// ...
}int main() {
int x = 1234;
// Write formatted output to standard output
cout << "The number is: " << x << endl;
}