#include #include using namespace std; int tene(int n) { int ans=1; for (int i = 0; i <= n - 1; i++) ans = ans * 10; return ans; } int main() { int N, plu=0, leng; string str; int bi=1, tui; cin >> N; str = to_string(N); leng = str.length(); if (str[leng - 1] == '3') { plu++; N++; } str = to_string(N); leng = str.length(); for (int i = 0;i <= leng - 1;i++) { if (str[i] == '2' && str[i + 1] != '0') { plu += tene(leng - i - 1); N += tene(leng - i - 1); } else if (str[i] == '3' && str[i + 1] == '0') { plu += tene(leng - i - 1); N += tene(leng - i - 1); } } leng = str.length(); bi = tene(leng); tui = -(bi - N); cout << bi - plu << " " << tui << endl; return 0; }