Пример решения задачи "A+B" на языке C:
#include "stdio.h"
int main(){
freopen("input.txt","rt",stdin);
freopen("output.txt","wt",stdout);
int a, b;
scanf("%d%d" , &a, &b);
printf("%d" , a + b);
return 0;
}
Пример решения задачи "A+B" на языке C++:
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
freopen("input.txt","rt",stdin);
freopen("output.txt","wt",stdout);
int a, b;
cin >> a >> b;
cout << a + b;
return 0;
}
Пример решения задачи "A+B" на языке Pascal:
var a, b: integer;
begin
assign(input,'input.txt');
assign(output,'output.txt');
reset(input);
rewrite(output);
readln(a, b);
write(a + b);
close(input);
close(output);
end.