Question
Beecrowd 1016 Solution
Solution in C
#include<stdio.h> int main() { int a,c; scanf("%d",&a); c=2*a; printf("%d minutos\n",c); return 0; }
Solution in Python
a = int(input()) c = 2 * a print(f"{c} minutos")
The Python program reads an integer from the user using the input() method, computes c = 2 * a, and then prints the result using f-strings (print(f”c minutos”)).