using System;
public class Program
{
public static void Main()
int count = 0;
//edit these variables
int exp = 0; //exp you currently have
int expGain = 2200; //gain per thing (like a quest)
int expNeededLevel = 3150; //how much exp is needed to level up once
int expIncreasePerLevel = 10; //how much more exp you need for the next time you want to level up
int levelsGoal = 13; //how many times you want to level up
while (levelsGoal > 0) {
exp += expGain;
if (exp > expNeededLevel) {
exp %= expNeededLevel;
expNeededLevel += expIncreasePerLevel;
levelsGoal--;
}
count++;
Console.WriteLine($"You would have to do this {count} times.\nYou would have {exp} exp left.");