7 lines
142 B
Python
7 lines
142 B
Python
|
|
salary = int(input("salary: "))
|
||
|
|
credit = int(input("credit: "))
|
||
|
|
comm_u = int(input("service: "))
|
||
|
|
|
||
|
|
obd = (salary - credit - comm_u)
|
||
|
|
print(obd)
|