class ConstructorOverloading
{
int a, b, c;

ConstructorOverloading(int x, int y, int z)
{
a=x;
b=y;
c=z;
}