#include <iostream>
#include <string>
using namespace std;
struct Student
	{
		string Name;
		int SSN, Grade;
		char LGrade;
	} ;
void print(Student Student1);
int main()
{
	// Definition of struct begins here.
	Student Student1;
	// Definition of struct ends here.
	//Student Student1; // Declaring Student1 to be a variable of 
type Student.
	cout << "Enter name of student: ";
	getline(cin, Student1.Name);
	Student1.SSN = 333333333;
	Student1.Grade = 94;
	Student1.LGrade = 'A';
	print(Student1);
	
	return 0;
}

void print(Student Student1)
{
	// Display the record.
	cout << "Name: " << Student1.Name << endl;
	cout << "SSN: " << Student1.SSN << endl;
	cout << "Grade: " << Student1.Grade << endl;
	cout << "Letter Grade: " << Student1.LGrade << endl;
}
