This repository has been archived on 2025-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
python_it_top/Practica2_rel/task2_rpo254.py
2025-09-17 19:40:10 +05:00

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)