Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 278 Bytes

File metadata and controls

22 lines (12 loc) · 278 Bytes

BAEKJOON

import java.util.Scanner;

public class Main{

public static void main(String[] args) {
	
	Scanner sc = new Scanner(System.in);

	char x;
	
	String m = sc.next();
	
	for(int i=0; i<m.length(); i++) {
		
		System.out.println((int)m.charAt(i));
	}
	
}

}