#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 }