Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created February 17, 2017 13:12
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 folivetti/383636f961e6a602f03fd16633cf125a to your computer and use it in GitHub Desktop.
Save folivetti/383636f961e6a602f03fd16633cf125a to your computer and use it in GitHub Desktop.
Gabarito Semana 1
import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
int A, B, soma;
Scanner sc = new Scanner(System.in);
A = sc.nextInt();
B = sc.nextInt();
soma = A+B;
System.out.println("SOMA = " + soma);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment