Skip to content

Commit

Permalink
A+B problem submitted
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangguanghuib committed Nov 3, 2019
0 parents commit 618a8ef
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions acwing_P1/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package acwing_P1;

import java.io.*;
import java.util.*;

public class Main {
public static void main(String args[]) throws Exception {
Scanner cin = new Scanner(System.in);
int a = cin.nextInt();
int b = cin.nextInt();
System.out.println(a + b);
}
}

0 comments on commit 618a8ef

Please sign in to comment.