Cod sursa(job #2578401)

Utilizator segtreapMihnea Andreescu segtreap Data 10 martie 2020 23:25:57
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 3.25 kb
/**
       ~~-   __.--~~               _/  |                  \
                                ~~~   /\         \_ -._    \
         --.__    __.--~~    __.-----~  ~-._       ~-._~~-. |
  ___         ~~        _.-~                ~~-._      ~\  \
     ~~~~---.___.---~_.-                         ~-._    \  |
 _.-~  --~/         /                                 ~~\ |'
/   .-~~~~-./  //  /      ,;;;;;;;,,                  /| )'
  / / ~~-.  \  /  /           ``';;;;;,              ~/  '
 | |      \  ; | /                 `';;;,           |~
 | |     _|  ((((                      ';           |                     .-~
| |    /~ |                `~~--.___/          |,..|                     (_
| |      |                       ```          /,;;;|                   (   ~-
| |    /                                     |  _ /                __.--\  \
 \ \__ \                                      |~               .-~~      ~- )
- \                                           |               /.,..         \
/  `---'                           ,   .       |           _/  ;;;;;,
    /                             |            ;  ___.---~~     `'';;;
   |                              \__.--._  __.-~~               _| `';.
   |                                '~~~.-~~                   _/ ~\  `';.
   |                                 , (                     `;;\   `.  `;,
    |                       _.-~~~~~~-.|\ -.   .              `:;\   |   `;
     |                  __~~__.---._  _/ `\ `\   |              `'`,.|
      |                 \ ~~--._)..--~  _.-'.'  ,'                   `
       \                 \    - _\    /`.    ~-~                          _.-'
        `\                `._    .'  (  |                                /  (
          `\                 ~--~  _.-\ |                               ((_(
            `\               /   .~  ( ||                                ) \)
           /  `._           |    \_   `\;                                  |
         /'      ~--.____.-~     / ~~~~~                             /--/ /  |
        /                      /                                   ._((_/|  /
       /                      |                                     _()_/(
       |                      |                                     \  /    |
        \_                    `.                       _.-~          \/    /
          ~-._                  ~-._ _______________.-~             / )  /(  |
              ~-._                  ~~--._                          |   |  )
                  ~-.__                   ~-._                      |  /|   /)
                       ~~--.__                \                      \ \|  |
                              ~-._             |                      ))|  |
                                  ~\            |                     ( \  \ )
                                    `\           |                       | |(
                                      \           |                      )) )
                                                                         (  ((
**/
#include <cstdio>

using namespace std;

int main() {
  freopen ("adunare.in", "r", stdin);
  freopen ("adunare.out", "w", stdout);

  int a, b;
  scanf("%d %d", &a, &b);
  printf("%d\n", a + b);
}