#include #include #include typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(13); int y; std::cin >> y; std::cout << 2017 - y << std::endl; return 0; }