eolymp
Problems

Різниця двох цілих

published at 12/20/19, 1:51:32 pm

Тупая!!!!!!!! Поваляева

published at 5/15/22, 5:03:32 pm

include <iostream>

using namespace std; int main (){ long a,b; cin>>a>>b; cout<<a-b; }

published at 7/22/22, 11:24:42 pm

include<bits/stdc++.h>

using namespace std; int main(){ long long n,a; cin>>n>>a; cout<<n-a; }

published at 9/22/22, 9:11:12 pm

using System;

namespace Test { class Problem { public static void Main(string[] args) { long n = Convert.ToInt64(Console.ReadLine()); long m = Convert.ToInt64(Console.ReadLine()); Console.WriteLine(n-m); } } }

published at 9/23/22, 8:44:20 pm

include <iostream>

using namespace std;

int main() { long n, m; cin >> n >> m; cout << n - m; return 0; }

published at 1/9/23, 8:20:46 am

include <iostream>

using namespace std; int main() { long long a,b; cin>>a>>b; cout<<a-b; }