how to saving flow water meter reading into EEPROM

this code

void init_eeprom()
{
Serial.print("Reset Setting ...");
EEPROM.write(0,0xFF); //check
EEPROM.put(1,0);
Serial.println(" Done");
}
void read_init_eeprom()
{
Serial.print("Read Setting ...");

//eeprom_daily =(int) EEPROM.get(13);
EEPROM.get(1, eeprom_daily);

Serial.println(" Done");
}