One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| /* http://meyerweb.com/eric/tools/css/reset/ | |
| v2.0 | 20110126 | |
| License: none (public domain) | |
| */ | |
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var, |
| var readline = require('readline'); | |
| process.stdin.setEncoding('utf8'); | |
| var rl = readline.createInterface({ | |
| input: process.stdin, | |
| terminal: false | |
| }); | |
| rl.on('line', readLine); |
| import java.util.Scanner; | |
| class APlusB { | |
| public static void main(String[] args) { | |
| Scanner s = new Scanner(System.in); | |
| int a = s.nextInt(); | |
| int b = s.nextInt(); | |
| System.out.println(a + b); | |
| } | |
| } |