import { b, bv } from './b';
import { a, av } from './main';

export function c() {
    a(av);
    b(bv);
};

export const cv = av + bv;