#include <iostream>
int main() {
int year; //variable created as a integer
std::cin >> year;//It takes input from the user
std::cout << "Year: " << year; //It prints output on the screen
}
#include <iostream>
using namespace std;
int main()
{
char sample[] = "GeeksforGeeks";
cout << sample << " - A computer science portal for geeks";
return 0;
}