Skip to content

Instantly share code, notes, and snippets.

@Baekjoon
Last active July 6, 2017 15:42
Show Gist options
  • Save Baekjoon/6277d6ffca7ba1fe3079 to your computer and use it in GitHub Desktop.
Save Baekjoon/6277d6ffca7ba1fe3079 to your computer and use it in GitHub Desktop.
10950
#include <cstdio>
using namespace std;
int main() {
int t;
int a,b;
scanf("%d",&t);
while (t--) {
scanf("%d %d",&a,&b);
printf("%d\n",a+b);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment