keeps failing and i don't know why. can some one please help me?
//Write a C++ program to get the input of number of tickets for an amusement
//park. Each ticket costs $ 5.50.
//Every fifth ticket is free.
//If any person is less than 5 or greater than 65 (by age), then they get a
//discount of 1.08.
//Calculate the total price for group of visitors.
//Specification: You can either use do-while / while / if-else if / switch
#include <iostream>
#include <iomanip>
using namespace std;
int numOfTickets = 0;
int ticketCost = 0;
int individualTicket = 0;
int age = 0;
int discount = 0;
int numOfGroup = 0;
int totalPrice = 0;
int i = 0;
int numOfDiscounts = 0;
int discount2 = 0;
cout << "How many tickets do you need?" << endl;
cin >> numOfTickets << endl;
cout << " How many are over 65 or under 5?" << endl;
cin >> numOfDiscounts << endl;