contract ExampleContract {

	function whatBlockIsIt() external view returns (uint256) {
		return block.number;
	}
}