function Noname() {
var count = prompt("What is the number?", "");
count > 0;
if (isNaN(count)) {
alert("Please repeat and enter the number");
}
if (count % 25 == 0) {
count -= 25;
}
if (count % 10 == 0) {
count -= 10;
}
}