summaryrefslogtreecommitdiffstats
path: root/šola/p2/dn/DN01a_63230317.c
blob: f55755a38be68b2bb702ba2e0737d0ac114c5fe1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <stdio.h>
int nextInt () {
	int r = 0;
	int minus = 0;
	for (int števka = '0'; števka == '-' || (števka <= '9' && števka >= '0'); števka = getchar()) {
		if (števka == '-') {
			if (r != 0)
				break;
			minus = !minus;
			continue;
		}
		r = r*10+števka-'0';
	}
	return minus ? -r : r;
}
void printInt (int a) {
	if (a < 0) {
		a = -a;
		putchar('-');
	}
	int l = 1;
	int c = a/10;
	while (c > 0) {
		l *= 10;
		c /= 10;
	}
	while (l) {
		putchar('0'+(a/l)%10);
		l /= 10;
	}
}
int main (void) {
	printInt(nextInt()+nextInt());
	putchar('\n');
	return 0;
}