using System;
public class Program
{
public static void Main()
int[] a =new int[5];
for(int i=0; i<a.Length; i++)
a[i] =int.Parse(Console.ReadLine());
}
int[] b =new int[5];
for(int t=0; t<b.Length; t++)
b[t]=a[t]*2;
Console.WriteLine(b[t]);