URI Problem (Distance) 1016:
Distance is a basic problem on URI online judge for novice problem solver.
You can find details on this Link.
import java.util.Scanner;
/**
* @Author : Muhammad Harun-Or-Roshid
* @Date : Oct 8, 2016
* @Time : 7:58:58 PM
*/
public class Uri1016 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
System.out.println(2*x+" minutos");
}
}
0 Comments