Read the code carefully
from pydantic import BaseModel, Field
class Order(BaseModel):
qty: int = Field(..., gt=0)
try:
Order(qty=-3)
except Exception as e:
print("error" if "greater" in str(e).lower() else "ok")What will the program print? Write here: