A1421.[COCI-2010_2011-contest3]#5 ZBROJ

提高+/省选-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

After he got tired of rotating tables, the teacher gave Perica another problem. She wrote two integers, A and B, on the blackboard and asked him to add them.
Perica is never wrong with his calculation, but sometimes he doesn’t copy the numbers correctly. The only mistake he ever makes is copying a ‘5’ as a ‘6’, and viceversa.
Given two numbers, A and B, calculate the minimum and the maximum sum Perica could possibly get.

输入格式

The first and only line of input contains positive integers A and B (1 ≤ A, B ≤ 1 000 000).

输出格式

In single line of output, print two space separated integers, minimum and maximum sum Perica could get.

输入输出样例

  • 输入#1

    11 25

    输出#1

    36 37 
  • 输入#2

    1430 4862 

    输出#2

    6282 6292
  • 输入#3

    16796 58786 

    输出#3

    74580 85582

说明/提示

首页