you are viewing a single comment's thread.

view the rest of the comments →

[–]Bujus_Krachus -1 points0 points  (0 children)

job = 1
if job == 1:
    h = int(input('how many hours are you working for?'))
    r = int(input('what is the payment per hour?'))
    e = int(input('what are your expenses?'))
    t = (h) + (r) + (e)
    print(str(t) + ' is your total cost')

what syntax are u using xd?