정수의 각 자리 숫자들의 합계

less than 1 minute read

DESCRIPTION

정수 N (0~1,000)를 표현하는 각 자리의 숫자들의 합계를 구하는 프로그램을 작성하세요. 예를 들어 932 정수의 각 자리 숫자들의 합계는 9+3+2=14 입니다.

Write a program that reads an integer N between 0 and 1000 and adds all the digits in the integer. For example, if an integer is 932, the sum of all its digits is 14.

INPUT

  • Line 1 : 단일 정수 N (0~1,000)

OUTPUT

  • Line 1 : 단일 정수 (각 자리의 숫자를 더한 값)

SAMPLE INPUT

932

SAMPLE OUTPUT

14

HINT

Use the % operator to extract digits, and use the / operator to remove the extracted digit. For instance, 932 % 10 = 2 and 932 / 10 = 93.

Categories: ,

Updated:

Comments