-
Hajipur, Bihar, 844101
Sharpen your programming skills by solving a new Java coding problem everyday!
5
5 10 15
To unlock the official solution code and explanation, you must successfully solve today's challenge or wait for today's challenge to end.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.print(n + " " + (n*2) + " " + (n*3));
}
}