Learn practical skills, build real-world projects, and advance your career
import jovian
project_name = "Basic-Python-Practice"

**Que 1 : The population of a town is 198568. Out of them 45312 are men and 35678 are women. Find the number of children in the town.

p=198568 # population
m=45312 # men
w=35678 # Women
c= p-(m+w) # c=Children
print("Number of Children in the Town {}.".format(c))
Number of Children in the Town 117578.

**Que 2 : A shopkeeper has 2425 boxes of 24 pencils each. How many pencils do all the boxes have in all?