Answer in editorial is wrong

Describe your issue

ATM question
editor code is wrong which you providing for this ATM question :-
//Code in C++
include
using namespace std;
int main()
{
int withdraw;
float balance;
cin>>withdraw;
cin>>balance;
if ((withdraw%5==0)&&(balance>(withdraw+0.50)))//(Checks if money to be withdrawn is a multiple of 5 and the balance is enough
cout <<(balance-withdraw-0.50);
else
cout<<balance;
}

this is wrong and i submit it and get wrong submit =1 in my profile .

editorial wrong answer
here is the write code my me:-
//Code in C++
include <bits/stdc++.h>
using namespace std;

int main() {
// your code goes here
int withdraw;
float balance;
cin>>withdraw;
cin>>balance;
if ((withdraw%5==0)&&(balance>=(withdraw+0.50)))
{cout<<(balance-withdraw-0.50);}
else{cout<<balance;}
return 0;

}

so please may you remove wrong submit = 1 from my profile and also update the editorial code attach ot it.

Screenshot

Additional info

please help me to remove wrong submit =1 to =0 please as soon as possible.
thank you