Nerde Nolzda

ZeroJudge: a002 簡易加法

ZeroJudge Link (Zh)

#include <stdio.h>

main() {
  int a, b;
  while(scanf("%d %d", &a, &b) != EOF) {
    printf("%d\n", a + b);
  }
  return 0;
}

Related Posts

0 comments

Post a comment

Send an email to comment@nerde.pw.