#include using namespace std; int main() { int carrots; carrots = 26; std::cout << "I have " << carrots << " carrots." << std::endl; carrots -= 1; std::cout << "Crunch, crunch. Now I have " << carrots << " carrots." << std::endl; return 0; }