// demo1.sol// SPDX-License-Identifier: GPL-3.0pragma solidity >=0.6.0 <0.7.0;contract SimpleStorage {uint storedData;uint256 price;function set(uint x) public {storedData = x;}function get() public view returns (uint) {return storedData;}function setPrice(uint256 x) public {price = x;}function getPrice() public view returns (uint256) {return price;}}
