using System;
int totalTouchdowns = 1;
int totalPostTouchdownPoints = 1;
int totalFieldGoals = 1;
int finalScore = ( totalTouchdowns * 6 ) + ( totalPostTouchdownPoints * 1 ) + ( totalFieldGoals * 3 );
Console.WriteLine(finalScore);