매일 Algorithm

신재원·2023년 6월 7일
1

Algorithm

목록 보기
138/243

백준 15894번

import java.util.Scanner;

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


        long n = in.nextLong();

        System.out.println(n * 4);
    }
}

0개의 댓글