fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a, b; // 두 정수를 저장할 변수 선언 //
  5.  
  6. // 사용자 입력 받기 //
  7. printf("두 수를 입력하세요: ");
  8. scanf("%d %d", &a, &b);
  9.  
  10. // 결과 출력 //
  11. printf("%d과 %d의 합은 %d입니다\n", a, b, a + b);
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5264KB
stdin
Standard input is empty
stdout
두 수를 입력하세요: 2095009456과 32764의 합은 2095042220입니다