/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
int main()
{
char code[3] = {'5', '7', '8', '9'};
int duracaoinicial = (code[2] - '0') * 100;
printf("%d", duracaoinicial);
return 0;
}