errorType / 2.py
Beuys's picture
Upload 47 files
e16247a verified
raw
history blame contribute delete
123 Bytes
consumption=float(input())
a=float(input())
tip=a*0.1
tax=a*0.07
total=consumption+tip+tax
print(consumption,tip,tax,total)