ABSYS - Anti-Blot System
Jimmy is a hard-working pupil in his second year at primary school. Recently he decided to convert all his notes into an electronic version. Sadly, he found that his math notes were full of ink blots.
He scanned the notes and sent them through his own OCR package
(yes, he coded it all by himself at the age of 8).
The OCR package replaced all ink blots by the string "machula
".
Problem specification
You are given Jimmy's notes, processed by the OCR. They contain simple math exercises, which were used to practice addition on positive integers. Your task is to recover the damaged part of the notes.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line.
Each test case consists of exactly one line.
The line represents an equation of the form "number + number = number
",
where each number
is a positive integer.
One part of the equation will be replaced by the string "machula
".
The string always covers a contiguous non-empty sequence of digits, possibly even an entire
number. You may assume that for each equation in the input there will be
exactly one way to fill in the missing digits.
Output specification
For each test case, the output shall contain one line of the form
"number + number = number
". The line must represent the equation
from that test case with all missing digits filled in.
Example
Input: 3 23 + 47 = machula 3247 + 5machula2 = 3749 machula13 + 75425 = 77038 Output: 23 + 47 = 70 3247 + 502 = 3749 1613 + 75425 = 77038
Note: int in C++/C/Java or longint in Pascal is enough.
hide comments
jamesx_:
2017-06-21 19:08:34
Interesting one. Beware of blank lines in between test cases, it cost me a couple of attempts. |
|
sandeep_4141:
2017-06-18 12:13:36
python3 input().split()---> made it easy |
|
sanjay5797:
2017-06-11 19:03:10
string manipulation:-)....inbuilt library functions!!!!!!....AC in one GO!!!!!
|
|
ashwani0605:
2017-05-31 15:59:57
Difficulty depends on language of choice Last edit: 2017-05-31 16:00:11 |
|
ayushgupta1997:
2017-05-20 10:08:41
nice problem ac in one go:
|
|
newbie_127:
2017-05-17 16:41:22
Very Good Problem
|
|
onenightstand:
2017-04-08 19:24:10
AC in first go...
|
|
akhil9093:
2017-03-25 20:47:36
make sure about the blank lines above every test case..!!overall its a easy one |
|
shauryauppal:
2017-03-07 14:23:49
use stringstream to convert string to int
|
|
imshubhamk:
2017-02-25 09:53:05
just keep in mind the spaces between numbers and blank lines between test cases. caused me errors..
|
Added by: | Fudan University Problem Setters |
Date: | 2007-12-01 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: C99 ERL JS-RHINO |
Resource: | IPSC 2007 |