Skip to content

Commit c32745c

Browse files
committedMar 9, 2014
add poj code
1 parent 9ac5618 commit c32745c

File tree

390 files changed

+27807
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

390 files changed

+27807
-0
lines changed
 

‎poj/1000/10771782_AC_657MS_3012K.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import java.util.* ;
2+
3+
public class Main{
4+
public static void main(String args[]){
5+
int a , b;
6+
Scanner cin = new Scanner(System.in);
7+
a = cin.nextInt() ;
8+
b = cin.nextInt() ;
9+
System.out.println(a + b);
10+
}
11+
}

‎poj/1000/4697914_CE.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a, &b); printf("%d\n",a+b); return 0;}

0 commit comments

Comments
 (0)
Please sign in to comment.