Rewrite the following piece of code without using the AND op
Solution
Use 2 if to check
if billAmount > 1000 then
if billHours > 50 then
print \"valued customer\"
end if
end if

Use 2 if to check
if billAmount > 1000 then
if billHours > 50 then
print \"valued customer\"
end if
end if
