#include <iostream.h>
 int main()
 {
 int x = 5;
 int y = 7;
 cout "\n";
 cout << x + y << " " << x * y;
 cout "\n";
return 0;
 }