mirror of
https://github.com/Xevion/contest.git
synced 2025-12-16 16:11:29 -06:00
14 lines
413 B
Java
14 lines
413 B
Java
import static java.lang.System.*;
|
|
import java.io.File;
|
|
import java.io.FileNotFoundException;
|
|
import java.util.Scanner;
|
|
|
|
public class problem11 {
|
|
public static void main(String[] args) throws FileNotFoundException {
|
|
File input = new File("input.dat");
|
|
Scanner read = new Scanner(input);
|
|
while(read.hasNextInt())
|
|
out.println(read.nextInt() * 3);
|
|
read.close();
|
|
}
|
|
} |