Language:
C
C++
Python
状态
🌗
➕
➖
#include
int main(){ int a, b; while(scanf("%d %d",&a, &b) != EOF){ printf("%d\n", a + b); } return 0; }
输入
1 2
输出