Register Now
Co-hive is where curiosity meets expertise and where questions find answers.
For Qurios: Whether you're a student with burning Robotics, STEM queries, a parent nurturing a young scientist, or simply someone fascinated by the wonders of the world, Co-hive welcomes your inquiries. Connect with a vibrant community of experts who are passionate about sharing their knowledge.
For Experts: If you're an expert in robotics, STEM, or any field of knowledge, Co-hive provides an opportunity to showcase your expertise. Become a mentor, guide curious minds, and watch them flourish under your mentorship. Your insights can inspire the next generation of innovators.
Create an account
Answers ( 2 )
tax = 0
pr=int(input(“Enter the price of bike”))
if pr > 100000
tax = 15/100*pr
elif pr>50000 and pr <=100000
tax = 10/100*pr
else:
tax = 5/100*pr
print("Tax to be paid: ", tax)
tax=0
pr=int(input(“Enter the price of bike”))
if pr>100000:
tax=15/100*pr
elif pr>50000 and pr<=100000:
tax=10/100*pr
else:
tax=5/100*pr
print("Tax to be paid",tax)
Attachment