X Tutup
import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s1 = sc.nextLine(); String s = s1.toLowerCase(); int flag=0; int l = s.length(); char word[] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; for(int i=0;i<26;i++){ flag=0; for(int j=0;j
X Tutup