#include int main() { int a, b; fscanf(stdin, "%d %d", &a, &b); fprintf(stdout, "Osszeg: %d\nSzorzat: %d\n",a+b,a*b); return 0; }