PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#Main program 5a
a = int(input("Balance \n" )) * (0.01)
b = int(input("Over Draft "))
if (b>0):
print(a - 5)
else:
print ((a-5) *b)
print("Thanks for using this program")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run