CF468C.Hack it!

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Little X has met the following problem recently.

Let's define f(x)f(x) as the sum of digits in decimal representation of number xx (for example, f(1234)=1+2+3+4f(1234)=1+2+3+4 ). You are to calculate

Of course Little X has solved this problem quickly, has locked it, and then has tried to hack others. He has seen the following C++ code:

<br></br> ans = solve(l, r) % a;<br></br> if (ans <= 0)<br></br> ans += a;<br></br><br></br> This code will fail only on the test with . You are given number aa , help Little X to find a proper test for hack.

输入格式

The first line contains a single integer a (1<=a<=1018)a (1<=a<=10^{18}) .

输出格式

Print two integers: l,r (1<=l<=r<10^{200}) — the required test data. Leading zeros aren't allowed. It's guaranteed that the solution exists.

输入输出样例

  • 输入#1

    46
    

    输出#1

    1 10
    
  • 输入#2

    126444381000032
    

    输出#2

    2333333 2333333333333
    
首页