import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int ans = 0; // 검증수
for (int i = 0; i < 5; i++) {
int num = sc.nextInt();
ans += num * num;
}
System.out.println(ans % 10);
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 2577번 (0) | 2023.01.22 |
---|---|
[백준] 1271번 (0) | 2023.01.22 |
[백준] 15964번 (0) | 2023.01.22 |
[백준] 9086번 (0) | 2023.01.22 |
[백준] 11718번 (0) | 2023.01.22 |