Read info from file into arrays

Need to read a file and send the name of the monkey and amount of food (in pounds) by day to two different arrays. Not sure how to go about adding a name to one array, and then adding 7 integer values to another in that order three times.

Don't have much but this is what I have so far..

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  #include <iostream>
#include <fstream>
#include<iomanip>
#include <string>
using namespace std;

const int NUM_MONKEYS = 3;
const int NUM_DAYS = 7;

int main()
{
	int poundsOfFood[NUM_DAYS];
	string monkeyName[NUM_MONKEYS];

	ifstream fin("monkeyData.txt");
	if(!fin){
		cout<<"Error opening file. \n";
		return 1;}

	int namecount = 0, intakecount = 0;
	while 

	
}


This is what the text file reads

Bonnie 45 33 55 66 77 88 100
Clyde 88 77 66 55 44 33 22
Trigger 44 55 00 66 77 88 99
Topic archived. No new replies allowed.