summaryrefslogtreecommitdiffstats
path: root/šola/p1/vaje/2023-10-19/Modulo.java
blob: 85c92cd5044c2342f01c586d288000c641edfecc (plain) (blame)
1
2
3
4
5
6
7
8
9
import java.util.*;
public class Modulo {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.nextLine();
		for (int i = a.length()-1; i >= 0; i--)
			System.out.println(a.substring(i, i+1));
	}
}