// editor2
#include <stdio.h>
int main() {
    void processpayment(int paymentAmount, int accountBalance, int is Active)
        if (isActive == 0) {
            printf("Account Inactive\n");
        } else if (accountbalance < paymentAmount) {
            printf("Insufficient Balance\n");
        } else {
    float remainingBalance = (float)accountbalance - paymentAmount;
    printf("%.2f\n", remainingBalance);
}
    }