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.|

RGB8001 - 2 тооны нийлбэр

Өгөгдсөн хоёр бүхэл тооны нийлбэр ол.

Input

Зайгаар тусгаарлагдан 2 тоо өгөгдөнө. (Integer төрөл)

Output

Нийлбэр

Example

Input:
2 3

Output:
5

Нэмсэн:Bataa
Огноо:2010-01-04
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 ASM64 BASH BF C CSHARP C++ 4.3.2 CPP CPP14 C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON RUBY SCALA SCM guile SCM qobi ST TCL TEXT WHITESPACE

hide comments
2010-06-03 09:36:08 tsetsee_yugi
#include <stdio.h>
int main(){
int a,b;
scanf("%d %d",&a,&b);
printf("%d",a+b);
return 0;}
2010-05-13 04:10:55 doljin
#include<iostream.h>
main()
{
int x,y,z;
cin>>x;
cin>>y;
z=x+y;
cout<<z<<endl;
}
2010-05-13 03:53:23 nandin-erdene
#include<iostream.h>
int main()
{
int x,y,z;
cin>>x;
cin>>y;
z=x+y;
cout<<"z"<<endl;
return 0;
}
2010-05-11 06:59:33 dolgoonmoron
#include<iostream.h>

main()
{

int a,b,c;

cin>>a;
cin>>b;

c=a+b;

cin<<c<<endl;

}
2010-03-30 07:59:54 Dorjsembe
#include <iostream.h>
int main(){
int n,m,s;
cin>>n>>m;
s=n+m;
cout<<s;
return 0;
}
ene bish yum uu
2010-03-18 03:03:49 Davaa
#include<iostream.h>
#include<conio.h>
void main()
{
int n,m;
cout<<"n="; cin>>n;
cout<<"m="; cin>>m;
cout<<n+m;
getch();
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.