Option Explicit
Sub Test()
Dim statut As String
Dim tpsDu As Long
statut = InputBox("Saisir le statut du professeur (A pour agrégé, C pour certifié, S pour stagiaire) :")
If statut = "A" Then
tpsDu = tpsDu + 15
ElseIf statut = "C" Then
tpsDu = tpsDu + 18
ElseIf statut = "S" Then
tpsDu = tpsDu + 6
End If
End Sub