URI Problem (Remaining 2) 1075:
Remaining 2 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 15, 2016 * @Time : 1:08:11 PM */ public class Uri1075 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if (n < 10000) { for (int i = 1; i <= 10000; i++) { if (i % n == 2) { System.out.println(i); } } } } }