package codeup100; import java.util.Scanner; public class c1028 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); //자바는 long 타입이 있다. long num = sc.nextLong(); sc.close(); System.out.printf("%d", num); } }