// p01_02.cpp: Computing your age
#include <iostream>
using namespace std;

int main() {

int curYear, yearOfBirth;
cout << "Current year: ";
cin >> curYear;
cout << "Year of Birth: ";
cin >> yearOfBirth;
cout << "Your computed age at the end of this\n"
     << "year is " << curYear - yearOfBirth << endl;
return 0;

}
