class Phone():
Color=" "
Price =00
Type=" "
ob1=Phone()
ob2=Phone()
ob1.Color="RED"
ob1.Price=10000
ob1.Type="Nokia"
ob2.Color="Black"
ob2.Price=12000
ob2.Type="Asus"
print("This is a %s phone of %s color and its price is %drs"%(ob1.Type,ob1.Color,ob1.Price))
print("This is a %s phone of %s color and its price is %drs"%(ob2.Type,ob2.Color,ob2.Price))