Daffodil International University
Problem Link
//Please follow from main function
#include <stdio.h>
#include <stdlib.h>
#define X 60
#define Y 90
int main()
{
int T;
scanf("%d", &T);
printf("%d minutos\n", T*2);
return 0;
}
uva
0 Comments