Which of the following statements will add two columns of INT type to the `country` table?
A.
ALTER TABLE country ADD rainfall INT ADD gdp INT
B.
ALTER TABLE country ADD rainfall INT, gdp INT
C.
ALTER TABLE country ADD rainfall INT, ADD gdp INT
D.
ALTER TABLE country ADD rainfall INT gdp INT
E.
You cannot add more than one column with a single ALTER TABLE statement