def qwest1(x = 0):
*TAB* i1 = 34.5*x; i2 = 24/6.8; i3 = i1+i2
*TAB* l1= x+67; l2 = l1*4; l3 = 24*x; l4 = l2-l3
*TAB* s = i3 - l4
*TAB* print(s)
x1 = 24/9.2
qwest1(x = 13)
qwest1(x = 12.6)
qwest1(x = x1)
def qwest1(x = 0):
*TAB* i1 = 34.5*x; i2 = 24/6.8; i3 = i1+i2
*TAB* l1= x+67; l2 = l1*4; l3 = 24*x; l4 = l2-l3
*TAB* s = i3 - l4
*TAB* print(s)
x1 = 24/9.2
qwest1(x = 13)
qwest1(x = 12.6)
qwest1(x = x1)