[백준] JAVA/입출력과 사칙연산
[백준] JAVA 10926: ??!
코딩하는곰곰
2022. 2. 4. 20:16
https://www.acmicpc.net/problem/10926
Solution:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String id = br.readLine();
System.out.print(id+"??!");
br.close();
}
}