[go: up one dir, main page]

0% found this document useful (0 votes)
3 views22 pages

Ip Project

maths calculator

Uploaded by

aswathsunder16
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views22 pages

Ip Project

maths calculator

Uploaded by

aswathsunder16
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 22

1

INRODUCTION
TOPIC: MATH HUB

Math hub is an entry level educational app that solves basic math problems
It primarily targets at students as a learning tool for students below
High school. It contains features that are designed solve mathematical
problems. It includes features like addition, subtraction, multiplication, division,
root of a number, etc. And features like total surface area, curved surface area
and volume of cube, cuboid, cone, cylinder etc. This app obtains the numerical
Values from the user and calculates the given values as per the selected function
and shows the result.

SYNOPSIS
Math is a quite interesting subject to learn. It deals with a lot of numerical
Values and alphabetic values which makes math's quite difficult for the
Students, so we have created an app to help students learn and improve
Their mathematical skills.

HARDWARE REQUIRED (minimum)

• Modern operating system:


• x86 64-bit CPU (intel/AMD/ architecture) ARM CPUs are not supported
• 4 GB RAM
• 5 GB free disk space

SOFTWARE REQUIRED

• Python
• MS word
• Google
• MYSQL
1

CODING
#math hub
Print(“welcome to math hub”)
print("would you like to continue ? ")
use=input("yes or no : ")
print('-'*40)
if use.lower()=='yes':
print("Pick your choice")
print("Arithmetic")
print("Mensuration")
print('-'*40)
Choice=input("Enter your choice : ")
if Choice.lower()=='arithmetic':
print(" * Decide your category * ")
print("1 - Addition")
print("2 - Subraction")
print("3 - Multiplication")
print("4 - Division")
print("5 - Exponent")
print("6 - Square Root")
print("7 - Average")
print('-'*40)
print("Pick your choice")
category=input("Enter any number from 1 to 7 : ")
print("-"*40)
if category=='1':
print(" ADDITION ")
print(" ")
numbers=[]
N=int(input("Enter how many numbers you want to add : "))
for a in range(N):
Number=float(input("Enter the numbers you want to add : "))
numbers.append(Number)
Sum=sum(numbers)
print(" ")
print("The sum of numbers : ",Sum)
print("-"*40)
elif category=='2':
print(" SUBRACTION ")
print(" ")
x=float(input("Enter the minuend : "))
y=float(input("Enter the subrtraend : "))
difference=x-y
print(" ")
print("The difference of numbers is : ",difference)
elif category=='3':
print(" MULTIPLICATION ")
print(" ")
X=[]
import math
n=int(input("Enter how many numbers you want to multiply : "))
1

for c in range(n):
x=float(input("Enter the number you want to multiply : "))
X.append(x)
Multiply= math.prod(X)
print(" ")
print("The product of numbers is : ",Multiply)
print("-"*40)
elif category=='4':
print(" DIVISION ")
print(" ")
print("Decide your choice")
print("1 - Remainder")
print("2 - Quotient")
decision=input("Enter your decision : ")
print("-"*40)
if decision=='1':
print(" REMAINDER ")
print(" ")
X=float(input("Enter the dividend : "))
Y=float(input("Enter the divisor : "))
import math
Remainder=math.remainder(X,Y)
print(" ")
print("The remainder of ",X,"by",Y,"is :",Remainder)
print("-"*40)
elif decision=='2':
print(" QUOTIENT ")
print(" ")
X=float(input("Enter the dividend : "))
Y=float(input("Enter the divisor : "))
Quotient=X/Y
print(" ")
print("The quotient of ",X,"by",Y,"is :",Quotient)
print('-'*40)
else:
print("Pick your choice from 1 or 2")
elif category=='5':
print(" EXPONENT ")
print(" ")
X=float(input("Enter the number : "))
Y=float(input("Enter the power : "))
exponent=X**Y
print(" ")
print("The exponent of ",X," to the power of ",Y," is :",exponent)
print("-"*40)
elif category=='6':
print(" SQUARE ROOT ")
print(" ")
X=float(input("Enter the number : "))
import math
Root=math.sqrt(X)
1

print("The square root of ",X," is :",Root)


print(" ")
print("-"*40)
elif category=='7':
print(" AVERAGE ")
print(" ")
X=[]
n=int(input("Enter how many numbers to find average from : "))
for g in range(n):
x=float(input("Enter the numbers : "))
X.append(x)
average=(sum(X))/n
print(" ")
print("The average of the numbers is : ",average)
print("-"*40)
else:
print("Pick your choice from 1 to 7")
print("-"*40)
elif Choice.lower()=='mensuration':
print(" * Decide your category * ")
print("1 - Two Dimensional")
print("2 - Three Dimensional")
print("-"*40)
print("Pick your choice")
pick=input("Enter 1 or 2 : ")
print("-"*40)
if pick=='1':
print("Select your choice")
print("1 - Square ")
print("2 - Rectangle")
print("3 - Triangle")
print("4 - Circle")
print("5 - Paralellogram")
category=input("Enter any number from 1 to 5 : ")
print("-"*40)
if category=='1':
print(" SQUARE ")
print(" ")
print("What do you want to find ? ")
print("1 - Area")
print("2 - Perimeter")
decision=input("Enter 1 or 2 : ")
print("-"*40)
if decision=='1':
print(" AREA OF THE SQUARE ")
print(" ")
side=float(input("Enter the side : "))
area=side*side
print(" ")
print("The area of the square is : ",area)
elif decision=='2':
1

print(" PERIMETER OF THE SQUARE ")


print(" ")
side=float(input("Enter the side : "))
perimeter=4*side
print(" ")
print("The perimeter of the square is : ",perimeter)
else:
print("Pick from 1 or 2 ")
print("-"*40)
elif category=='2':
print(" Rectangle ")
print(" ")
print(" What do you want to find ? ")
print("1 - Area")
print("2 - Perimeter")
decision=input("Enter 1 or 2 : ")
print("-"*40)
if decision=='1':
print(" AREA OF THE RECTANGLE ")
print(" ")
length=float(input("Enter the length of the rectangle : "))
breadth=float(input("Enter the breadth of the rectangle : "))
area=length * breadth
print(" ")
print("The area of the rectangle is : ",area)
elif decision=='2':
print(" PERIMETER OF THE RECTANGLE ")
print(" ")
length=float(input("Enter the length of the rectangle : "))
breadth=float(input("Enter the breadth of the rectangle : "))
perimeter=2 *(length + breadth)
print(" ")
print("The perimeter of the rectangle is : ",perimeter)
else:
print("Pick from 1 or 2 ")
print("-"*40)
elif category=='3':
print(" TRIANGLE ")
print(" ")
print(" What do you want to find ? ")
print("1 - Area")
print("2 - Perimeter")
decision=input("Enter 1 or 2 : ")
print("-"*40)
if decision=='1':
print(" AREA OF THE TRIANGLE " )
print(" ")
base=float(input("Enter the base of the triangle : "))
height=float(input("Enter the height of the triangle : "))
area=1/2 *(base*height)
print(" ")
1

print("The area of the triangle is : ",area)


elif decision=='2':
print(" PERIMETER OF THE TRIANGLE")
print(" ")
A=float(input("Enter the length of the side 1 : "))
B=float(input("Enter the length of the side 2 : "))
C=float(input("Enter the length of the side 3 : "))
perimeter=A + B + C
print(" ")
print("The perimeter of the triangle is : ",perimeter)
else:
print("Pick 1 or 2 ")
print("-"*40)
elif category=='4':
print(" CIRCLE ")
print(" ")
print(" What do you want to find ? ")
print("1 - Area")
print("2 - Perimeter")
decision=input("Enter 1 or 2 : ")
print("-"*40)
if decision=='1':
print(" AREA OF THE CIRCLE ")
print(" ")
radius=float(input("Enter the radius of the circle : "))
area=3.14*radius*radius
print(" ")
print("The area of the circle is : ",area)
elif decision=='2':
print(" PERIMETER OF THE CIRLCE ")
print(" ")
radius=float(input("Enter the radius of the circle : "))
perimeter=2*3.14*radius
print(" ")
print("The perimeter of the circle is : ",perimeter)
else:
print("Pick 1 or 2 ")
print("-"*40)
elif category=='5':
print(" PARALLELOGRAM")
print(" ")
print(" What do you want to find ? ")
print("1 - Area")
print("2 - Perimeter")
decision=input("Enter 1 or 2 : ")
print("-"*40)
if decision=='1':
print(" AREA OF THE PARALLELOGRAM")
print(" ")
base=float(input("Enter the base of the parallelogram : "))
height=float(input("Enter the height of the parallelogram : "))
1

area=base*height
print(" ")
print("The area of the parallelogram is : ",area)
elif decision=='2':
print(" PERIMETER OF THE PARALLELOGRAM ")
print(" ")
height=float(input("Enter the hegith of the parallelogram : "))
breadth=float(input("Enter the breadth of the parallelogram : "))
perimeter=2 *(height + breadth)
print(" ")
print("The perimeter of the parallelogram is : ",perimeter)
else:
print("Pick from 1 or 2 ")
print("-"*40)
else:
print("Pick any number from 1 to 5 ")
print("-"*40)
elif pick=='2':
print("Select your choice ")
print("1 - Cube")
print("2 - Cubiod ")
print("3 - Cone")
print("4 - Sphere")
print("5 - Cylinder")
category=input("Enter any number from 1 to 5 : ")
print("-"*40)
if category=='1':
print(" CUBE ")
print(" ")
print("What do you want to find ? ")
print("1 - Total Surface Area ")
print("2 - Lateral surface area")
print("3 - Volume")
decision=input("Enter any number from 1 to 3 : ")
print("-"*40)
if decision=='1':
print(" TOTAL SURFACE AREA OF CUBE ")
print(" ")
side=float(input("Enter the side of the cube : "))
area=6*(side*side)
print(" ")
print("The total surface area of the cube is : ",area)
elif decision=='2':
print(" LATERAL SURFACE AREA OF CUBE ")
print(" ")
side=float(input("Enter the side of the perimeter : "))
perimeter=12*side
print(" ")
print("The lateral surface area of the cube is : ",perimeter)
elif decision=='3':
print(" VOLUME OF CUBE ")
1

print(" ")
side=float(input("Enter the side of the cube : "))
volume=side*side*side
print(" ")
print("The volume of the cube is : ",volume)
else:
print("Pick any number from 1 to 3")
print("-"*40)
if category=='2':
print(" CUBOID ")
print(" ")
print("What do you want to find ? ")
print("1 - Total Surface Area ")
print("2 - Lateral surface Area ")
print("3 - Volume")
decision=input("Enter any number from 1 to 3 : ")
print("-"*40)
if decision=='1':
print(" TOTAL SURFACE AREA OF THE CUBOID ")
print("")
base=float(input("Enter the base of the cuboid : "))
height=float(input("Enter the height of the cuboid : "))
length=float(input("Enter the length of the cuboid : "))
area=(2*length*base)+(2*length*height)+(2*base*height)
print(" ")
print("The total surface area of the cuboid is : ",area)
elif decision=='2':
print(" LATERAL SURFACE AREA OF THE CUBOID")
print(" ")
base=float(input("Enter the base of the cuboid : "))
height=float(input("Enter the height of the cuboid : "))
length=float(input("Enter the length of the cuboid : "))
perimeter=4*(base+height+length)
print(" ")
print("The lateral surface of the cuboid is : ",perimeter)
elif decision=='3':
print(" VOLUME OF THE CUBIOD ")
print(" ")
base=float(input("Enter the base of the cuboid : "))
height=float(input("Enter the height of the cuboid : "))
length=float(input("Enter the length of the cuboid : "))
volume=length*height*base
print(" ")
print("The volume of the cuboid is : ",volume)
else:
print("Pick any number from 1 to 3")
print("-"*40)
if category=='3':
print(" CONE ")
print(" ")
print("What do you want to find ? ")
1

print("1 - total Surface Area ")


print("2 - Curved surface area")
print("3 - Volume")
decision=input("Enter any number from 1 to 3 : ")
print("-"*40)
if decision=='1':
print(" TOTAL SUFRACE AREA OF THE CONE : ")
print(" ")
radius=float(input("Enter the radius of the cone : "))
length=float(input("Enter the length of the cone : "))
area=3.14*radius*(length+radius)
print(" ")
print("the total surface area of the cone is : ",area)
elif decision=='2':
print(" CURVED SURFACE AREA OF THE CUBE ")
print(" ")
radius=float(input("Enter the radius of the cone : "))
length=float(input("Enter the length of the cone : "))
csa=3.14*radius*length
print(" ")
print("The curved surface area of the cube is : ",csa)
elif decision=='3':
print(" VOLUME OF THE CONE ")
print(" ")
height=float(input("Enter the height of the cone : "))
radius=float(input("Enter the radius of the cone : "))
volume=1/3*height*(radius*radius)
print(" ")
print("The volume of the cone is : ",volume)
else:
print("Pick any number from 1 to 3 ")
print("-"*40)
if category=='4':
print(" SPHERE ")
print(" ")
print("What do you want to find ? ")
print("1 -Surface area")
print("2 - Volume")
decision=input("Enter 1 or 2 : ")
print("-"*40)
if decision=='1':
print(" AREA OF SPHERE")
print(" ")
radius=float(input("Enter the radius of the sphere : "))
area=4*3.14*(radius*radius)
print(" ")
print("The surface area of the sphere is : ",area)
elif decision=='2':
print(" VOLUME OF SPHERE ")
print(" ")
radius=float(input("Enter the radius of the sphere : "))
1

volume=4/3*3.14*(radius*radius*radius)
print(" ")
print("The volume of the sphere is ",volume)
else:
print("pick from 1 or 2 ")
print("-"*40)
if category=='5':
print(" CYLINDER")
print(" ")
print("What do you want to find ? ")
print("1 - total Surface Area ")
print("2 - Curved surface area")
print("3 - Volume")
decision=input("Enter any number from 1 to 3 : ")
print("-"*40)
if decision=='1':
print(" TOTAL SURFACE AREA OF CYLINDER")
print(" ")
radius=float(input("Enter the radius of the cylinder : "))
height=float(input("Enter the height of the cylinder : "))
tsa=2*3.14*radius*(radius+height)
print(" ")
print("The total surface area of cylinder is : ",tsa)
elif decision=='2':
print(" CURVED SURFACE AREA OF THE CYLINDER")
print(" ")
radius=float(input("Enter the radius of the cylinder : "))
height=float(input("Enter the height of the cylinder : "))
csa=2*3.14*radius*height
print(" ")
print("The curved surface area of a cylinder is : ",csa)
elif decision=='3':
print(" VOLUME OF CYLINDER ")
print(" ")
radius=float(input("Enter the radius of the cylinder : "))
height=float(input("Enter the height of the cylinder : "))
volume=3.14*radius*radius*height
print(" ")
print("The volume of cylinder is : ",volume)
else:
print("pick from 1 or 2 ")
print("-"*40)
else:
print("Pick your choice from Arithmetic or Mensuration")
print("-"*40)
elif use.lower()=='no':
print("*"*40)
else:
print("Pick Yes or No")
1

OUTPUT:-
Welcome to Math Helper
would you like to continue ?

yes or no : YES
----------------------------------------
Pick your choice
Arithmetic
Mensuration
----------------------------------------
Enter your choice : arithmetic
* Decide your category *
1 - Addition
2 - Subraction
3 - Multiplication
4 - Division
5 - Exponent
6 - Square Root
7 - Average
----------------------------------------
Pick your choice

Enter any number from 1 to 7 : 1


----------------------------------------
ADDITION

Enter how many numbers you want to add : 4

Enter the numbers you want to add : 6

Enter the numbers you want to add : 5

Enter the numbers you want to add : 4

Enter the numbers you want to add : 3

The sum of numbers : 18.0


----------------------------------------

Enter any number from 1 to 7 : 2


----------------------------------------
SUBRACTION

Enter the minuend : 6

Enter the subrtraend : 3


1

The difference of numbers is : 3.0


----------------------------------------
Enter any number from 1 to 7 : 3
----------------------------------------
MULTIPLICATION

Enter how many numbers you want to multiply : 4

Enter the number you want to multiply : 6

Enter the number you want to multiply : 5

Enter the number you want to multiply : 4

Enter the number you want to multiply : 3

The product of numbers is : 360.0


----------------------------------------
Enter any number from 1 to 7 : 4
----------------------------------------
DIVISION

Decide your choice


1 - Remainder
2 - Quotient

Enter your decision : 1


----------------------------------------
REMAINDER

Enter the dividend : 6

Enter the divisor : 3

The remainder of 6.0 by 3.0 is : 0.0


Enter any number from 1 to 7 : 4
----------------------------------------
DIVISION

Decide your choice


1 - Remainder
2 - Quotient

Enter your decision : 2


----------------------------------------
QUOTIENT
1

Enter the dividend : 6

Enter the divisor : 3

The quotient of 6.0 by 3.0 is : 2.0


----------------------------------------
Enter any number from 1 to 7 : 5
----------------------------------------
EXPONENT

Enter the number : 2

Enter the power : 5

The exponent of 2.0 to the power of 5.0 is : 32.0


----------------------------------------
Enter any number from 1 to 7 : 6
----------------------------------------
SQUARE ROOT

Enter the number : 36


The square root of 36.0 is : 6.0

----------------------------------------
Enter any number from 1 to 7 : 7
----------------------------------------
AVERAGE

Enter how many numbers to find average from : 4

Enter the numbers : 6

Enter the numbers : 5

Enter the numbers : 4

Enter the numbers : 3

The average of the numbers is : 4.5


----------------------------------------
Enter your choice : mensuration
* Decide your category *
1 - Two Dimensional
2 - Three Dimensional
1

Pick your choice

Enter 1 or 2 : 1
----------------------------------------
Select your choice
1 - Square
2 - Rectangle
3 - Triangle
4 - Circle
5 - Paralellogram

Enter any number from 1 to 5 : 1


----------------------------------------
SQUARE

What do you want to find ?


1 - Area
2 - Perimeter

Enter 1 or 2 : 1
----------------------------------------
AREA OF THE SQUARE

Enter the side : 4

The area of the square is : 16.0


----------------------------------------
Enter 1 or 2 : 2
----------------------------------------
PERIMETER OF THE SQUARE

Enter the side : 6

The perimeter of the square is : 24.0


----------------------------------------
Enter any number from 1 to 5 : 2
----------------------------------------
Rectangle

What do you want to find ?


1 - Area
2 - Perimeter

Enter 1 or 2 : 1
----------------------------------------
AREA OF THE RECTANGLE
1

Enter the length of the rectangle : 5

Enter the breadth of the rectangle : 4

The area of the rectangle is : 20.0


----------------------------------------
Enter 1 or 2 : 2
----------------------------------------
PERIMETER OF THE RECTANGLE

Enter the length of the rectangle : 6

Enter the breadth of the rectangle : 5

The perimeter of the rectangle is : 22.0


Enter any number from 1 to 5 : 3
----------------------------------------
TRIANGLE

What do you want to find ?


1 - Area
2 - Perimeter

Enter 1 or 2 : 1
AREA OF THE TRIANGLE

Enter the base of the triangle : 6

Enter the height of the triangle : 3

The area of the triangle is : 9.0


----------------------------------------
Enter any number from 1 to 5 : 3
----------------------------------------
TRIANGLE

What do you want to find ?


1 - Area
2 - Perimeter

Enter 1 or 2 : 2
----------------------------------------
PERIMETER OF THE TRIANGLE
1

Enter the length of the side 1 : 6

Enter the length of the side 2 : 4

Enter the length of the side 3 : 2

The perimeter of the triangle is : 12.0


----------------------------------------
Enter any number from 1 to 5 : 4
----------------------------------------
CIRCLE

What do you want to find ?


1 - Area
2 - Perimeter

Enter 1 or 2 : 1
----------------------------------------
AREA OF THE CIRCLE

Enter the radius of the circle : 4

The area of the circle is : 50.24


----------------------------------------
Enter 1 or 2 : 2
----------------------------------------
PERIMETER OF THE CIRLCE

Enter the radius of the circle : 6


The perimeter of the circle is : 37.68
----------------------------------------
Enter any number from 1 to 5 : 5
----------------------------------------
PARALLELOGRAM

What do you want to find ?


1 - Area
2 - Perimeter

Enter 1 or 2 : 1
----------------------------------------
AREA OF THE PARALLELOGRAM

Enter the base of the parallelogram : 5


1

Enter the height of the parallelogram : 3

The area of the parallelogram is : 15.0


----------------------------------------
Enter 1 or 2 : 2
----------------------------------------
Select your choice
1 - Cube
2 - Cubiod
3 - Cone
4 - Sphere
5 - Cylinder

Enter any number from 1 to 5 : 1


----------------------------------------
CUBE

What do you want to find ?


1 - Total Surface Area
2 - Lateral surface area
3 - Volume

Enter any number from 1 to 3 : 1


----------------------------------------
TOTAL SURFACE AREA OF CUBE

Enter the side of the cube : 5

The total surface area of the cube is : 150.0


----------------------------------------
Enter any number from 1 to 3 : 3
----------------------------------------
VOLUME OF CUBE

Enter the side of the cube : 6

The volume of the cube is : 216.0


----------------------------------------
Enter any number from 1 to 5 : 2
----------------------------------------
CUBIOD

What do you want to find ?


1 - Total Surface Area
2 - Lateral surface Area
3 - Volume

Enter any number from 1 to 3 : 1


1

----------------------------------------
TOTAL SURFACE AREA OF THE CUBIOD

Enter the base of the cubiod : 4

Enter the height of the cubiod : 3

Enter the length of the cubiod : 2

The total surface area of the cubiod is : 52.0


----------------------------------------
Enter any number from 1 to 5 : 2
----------------------------------------
CUBIOD

What do you want to find ?


1 - Total Surface Area
2 - Lateral surface Area
3 - Volume

Enter any number from 1 to 3 : 3


----------------------------------------
VOLUME OF THE CUBIOD

Enter the base of the cubiod : 6

Enter the height of the cubiod : 7

Enter the length of the cubiod : 4

The volume of the cubiod is : 168.0


----------------------------------------
Enter any number from 1 to 5 : 3
----------------------------------------
CONE

What do you want to find ?


1 - total Surface Area
2 - Curved surface area
3 - Volume

Enter any number from 1 to 3 : 1


----------------------------------------
TOTAL SUFRACE AREA OF THE CONE :

Enter the radius of the cone : 6


1

Enter the length of the cone : 5

the total surface area of the cone is : 207.24


----------------------------------------
Enter any number from 1 to 3 : 3
----------------------------------------
VOLUME OF THE CONE

Enter the height of the cone : 6

Enter the radius of the cone : 5

The volume of the cone is : 50.0


----------------------------------------
Enter any number from 1 to 5 : 4
----------------------------------------
SPHERE

What do you want to find ?


1 -Surface area
2 - Volume

Enter 1 or 2 : 1
----------------------------------------
AREA OF SPHERE

Enter the radius of the sphere : 6

The surface area of the sphere is : 452.16


----------------------------------------
Enter any number from 1 to 5 : 4
----------------------------------------
SPHERE

What do you want to find ?


1 -Surface area
2 - Volume

Enter 1 or 2 : 2
----------------------------------------
VOLUME OF SPHERE

Enter the radius of the sphere : 5

The volume of the sphere is 523.3333333333334


1

----------------------------------------
Enter any number from 1 to 5 : 5
----------------------------------------
CYLINDER

What do you want to find ?


1 - total Surface Area
2 - Curved surface area
3 - Volume

Enter any number from 1 to 3 : 1


CONCLUSION ----------------------------------------
TOTAL SURFACE AREA OF CYLINDER

Enter the radius of the cylinder : 6

Enter the height of the cylinder : 5

The total surface area of cylinder is : 414.48


----------------------------------------
Enter any number from 1 to 3 : 3
----------------------------------------
VOLUME OF CYLINDER

Enter the radius of the cylinder : 5

Enter the height of the cylinder : 4

The volume of cylinder is : 314.0


----------------------------------------

RESULT: - THE ABOVE CODING IS EXECUTED.


1

CONCLUSION

We have created an app to support an assist student with their mathematical problems
And give solutions for it. It helps the students to formally interact with the
App. It has different categories of easy and difficult problem-solving programs
To help the students with math.

Improvements: -

• Creating accounts to see if a person has an existing account or to create a new


account.
• To add more difficult and improved programs to the app for higher education
purposes.
• Adding age groups suggestions for them to understand the basic concepts

References: -
• Ncert class 11 informatic practices book by national council of educational research
and training 2019
-head publication: M.Siraj Anwar
1

INDEX

You might also like