Poj Solution 1000

http://poj.org/problem?id=1000

#include<stdio.h>
int main(){
  int a,b;
  scanf("%d%d",&a,&b);
  printf("%dn",a+b);
  return 0;
}
											
This entry was posted in poj. Bookmark the permalink.