시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB0000.000%

문제

Do you have any idea how much work must be done to make a competition like this to happen? Reserve rooms, install computers, buy some food, print certificates — these are only some of the important tasks. Can you imagine how many sleepless nights have been spent since the first CTU competition in 1995? And this was only for people like you to enjoy the ICPC. Wow!

Beside others, the problem set must be carefully prepared. This includes not only the problem statements but also solutions and test data. It is really a large amount of work. Would you help us, please? Your task is to create a test input data for the Problem 6642 (banking).

입력

The input to your program will be some valid and correct output for Problem 6642.

출력

Print any input that will exactly satisfy the Input Specification for the Problem 6642 and that would generate the given output.

예제 입력 1

withdraw 20.00: ok
deposit 35.00: ok
withdraw 200.00: insufficient funds
transfer 100.50: ok
transfer 50.00: interbank
create: already exists
create: ok
transfer 100.00: same account
transfer 100.00: insufficient funds
withdraw 100.00: no such account
deposit 0.11: no such account
transfer 10000.00: no such account
end

deposit 6.92: ok
withdraw 9.68: ok
withdraw 6.64: ok
end

goodbye

예제 출력 1

4
1234/5 3.14
9876/5 11000000.00
4444/4 3.14
1111/5 0.00
withdraw 9876/5 20.00
deposit 1234/5 35.00
withdraw 1111/5 200.00
transfer 9876/5 1234/5 100.50
transfer 9876/5 4444/4 50.00
create 1234/5
create 1000/1
transfer 9876/5 9876/5 100.00
transfer 1111/5 1234/5 100.00
withdraw 0666/8 100.00
deposit 0666/8 0.11
transfer 0666/8 1234/5 10000.00
end

4
1234/5 3.14
9876/5 11000000.00
4444/4 3.14
1111/5 0.00
deposit 1234/5 6.92
withdraw 9876/5 9.68
withdraw 9876/5 6.64
end

-1