Skip to content

Instantly share code, notes, and snippets.

@godoorsun
Created March 30, 2018 06:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save godoorsun/5ae20242941ad2258008327035db5fe7 to your computer and use it in GitHub Desktop.
Save godoorsun/5ae20242941ad2258008327035db5fe7 to your computer and use it in GitHub Desktop.
CodeSharing
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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment