#Lutece0862. Erase Securely

Erase Securely

Migrated from Lutece 862 Erase Securely

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Jon Marius is the computer expert at his company and has now been tasked to find some software for erasing data properly. It is very important that the data should not be recoverable afterwards, so it should be overwritten on the hard drive several times. Unable to find any free program up to the task, Jon Marius decides to write such a program himself. The user interface is simple, it only asks for the file to be destroyed and nn, the number of times it should be overwritten. This number can range from 11 (quick deletion) to 2020 (maximum security). Jon Marius processes the file bit by bit and does not consider writing a zero where there was already a zero as really overwriting. So for each of the nn sweeps, he overwrites each zero with a one and each one with a zero.

Jon Marius knows that independent testing is important, so he has asked you to write the verification routine. He will not listen to your objections to the algorithm so eventually you give in.

Input

The first line of the input contains a single integer 1N201\leq N\leq 20. The two following lines each contain a string containing only the characters 0 and 1. The first of these lines represent the bits of the file before deletion and the second the bits on the same position on the hard drive after the file has been deleted. The length of these strings are the same and between 11 and 10001000 characters.

Output

Output a single line containing either the words Deletion succeeded if each bit is switched NN times or Deletion failed if this is not the case.

Samples

1
10001110101000001111010100001110
01110001010111110000101011110001
Deletion succeeded
20
0001100011001010
0001000011000100
Deletion failed

Resources

Nordic Collegiate Programming Contest 2013