Write a function called `NotDecimal()` that takes as an argument a `string` in forme of a float number with the decimal point and returns a string converted to an `int` without the decimal point (you will have to multiply it by 10^n to remove the `.`).
- If the number doesn't have a decimal point or there is only a zero after the `.` return the number followed by a newline `\n`.