Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

ABR0000 - Нийлбэр(жишээ)

a, b хоёр бүхэл тоо өгөгдөв. Нийлбэрийг нь ол.

Input

a, b хоёр бүхэл тоог зайгаар тусгаарлан өгнө.

Output

нийлбэрийг нь хэвлэнэ.

Example

Input:
1 2

Output:
3

Жишээ бодолт 1(Java):

import java.util.*;

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

Жишээ бодолт 2(C++):
#include "iostream.h"
main(){
  int a, b;
  cin >> a >> b;
  cout << a+b;
  return 0;
}

Жишээ бодолт 3(Turbo C):
#include "stdio.h"
main(){
  int a, b;
  scanf("%d%d", &a, &b);
  printf("%d", a+b);
  return 0;
}

Нэмсэн:sw40
Огноо:2007-11-01
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:Бүгд дараах хэлүүдээс бусад: ASM32-GCC MAWK BC C-CLANG NCSHARP CPP14 CPP14-CLANG COBOL COFFEE D-CLANG D-DMD DART ELIXIR ERL FANTOM FORTH GOSU GRV JS-RHINO JS-MONKEY JULIA KTLN NIM NODEJS OBJC OBJC-CLANG OCT PERL6 PICO PROLOG PYPY PYPY3 PY_NBC R RACKET RUST CHICKEN SQLITE SWIFT UNLAMBDA VB.NET
Эх сурвалж:TOJ

hide comments
2020-09-22 15:58:57
import math
a , b = input().split()
a = int(a)
b = int(b)
s= a + b
print((s))
2020-05-25 12:24:19
#include <stdio.h>
main(){
int a, b;
scanf("%d%d", &a, &b);
printf("%d", a+b);
return 0;
}
2018-08-06 06:08:24
iiiiziii
2013-09-23 15:56:50 enkhbaysgalan
#include "stdio.h"
#include "stdlib.h"
main(){
int a, b;
scanf("%d%d", &a, &b);
printf("%d", a+b);
system ("pause");
return 0;
}

2013-02-01 15:06:50 M.Enkhbileg
#include <iostream>
using namespace std;
main()
{
int a, b;
cin >> a >> b;
cout << a+b;
system("pause");
return 0;
}
2012-11-01 09:55:28 turtuvshin
#include<stdio.h>
#include<stdlib.h>
int main( void )
{
int a, b, s;
scanf("%d%d", &a, &b);
s=a+b;
printf("niilber=%d", s);
system("pause");
return 0;
}
2012-10-27 15:42:01 Tso .
#include <stdio.h>
main(){
int a,b;
scanf("%d%d", &a, &b);
printf("%d", a+b);
return 0;
}
amarhan hehe
2012-10-06 15:11:16 conspiracy
#include <stdio.h>
#include <stdio.h>
int main(){
int a,b;
scanf("%d,%d",&a,&b);
printf("%d,a+b);
system("pause");
return 0;
}
2012-04-26 06:09:48 bilguun
damn bodson hun bna u ?
2012-04-25 07:46:53 buyandelger
ter lhagwa-ochir bitii shaa
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.