1st part
pragma solidity 0.6.0;
contract Storage {
uint256 favoriteNumber = 4;
bool favoriteBool = true;
string favoriteString = "moye moye";
int256 favoriteInt = 5;
address favoriteAddress = 0x82845D7257D6f31f2Ed7aa327F4Fad9A1764513e ;
bytes32 favoriteBytes = "hell" ;
}